/* style.css — Dlophe Records Africa */

/* ============ FONTS ============ */
/* Fraunces (display, warm editorial serif) + Work Sans (body) — Google Fonts */

/* ============ DESIGN TOKENS ============ */
:root {
  /* 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(2.75rem, 0.8rem + 6.5vw, 7rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.3rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.85rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;
}

/* ============ LIGHT MODE (default) ============ */
:root,
[data-theme='light'] {
  --color-bg: #f8f4ec;
  --color-surface: #fbf8f2;
  --color-surface-2: #fdfcf9;
  --color-surface-offset: #efe6d3;
  --color-surface-offset-2: #e8dcc2;
  --color-surface-dynamic: #e2d4b6;
  --color-divider: #e2d7be;
  --color-border: #d8c9a6;

  --color-text: #182238;
  --color-text-muted: #5c6478;
  --color-text-faint: #99a0b0;
  --color-text-inverse: #f8f4ec;

  --color-primary: #a8752a;
  --color-primary-hover: #7f5a20;
  --color-primary-active: #5f4318;
  --color-primary-highlight: #eaddb8;

  --color-navy: #16233d;
  --color-navy-2: #0f1a2e;

  --color-error: #a12c4f;
  --color-error-highlight: #ecd7de;
  --color-success: #3f7a4a;
  --color-success-highlight: #d7e6d9;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 60 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.2 0.02 60 / 0.1);
  --shadow-lg: 0 16px 40px oklch(0.2 0.02 60 / 0.16);
}

/* ============ DARK MODE ============ */
[data-theme='dark'] {
  --color-bg: #0b1526;
  --color-surface: #101c30;
  --color-surface-2: #142238;
  --color-surface-offset: #16273f;
  --color-surface-offset-2: #1b2e49;
  --color-surface-dynamic: #223a5a;
  --color-divider: #1d3050;
  --color-border: #274263;

  --color-text: #f2ecdd;
  --color-text-muted: #aab3c8;
  --color-text-faint: #6c7791;
  --color-text-inverse: #16233d;

  --color-primary: #d4a94a;
  --color-primary-hover: #e5c06b;
  --color-primary-active: #f0d48a;
  --color-primary-highlight: #33291a;

  --color-navy: #0b1526;
  --color-navy-2: #060d19;

  --color-error: #d97396;
  --color-error-highlight: #3a2530;
  --color-success: #7cb387;
  --color-success-highlight: #223a29;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0b1526;
    --color-surface: #101c30;
    --color-surface-2: #142238;
    --color-surface-offset: #16273f;
    --color-surface-offset-2: #1b2e49;
    --color-surface-dynamic: #223a5a;
    --color-divider: #1d3050;
    --color-border: #274263;
    --color-text: #f2ecdd;
    --color-text-muted: #aab3c8;
    --color-text-faint: #6c7791;
    --color-text-inverse: #16233d;
    --color-primary: #d4a94a;
    --color-primary-hover: #e5c06b;
    --color-primary-active: #f0d48a;
    --color-primary-highlight: #33291a;
    --color-navy: #0b1526;
    --color-navy-2: #060d19;
    --color-error: #d97396;
    --color-error-highlight: #3a2530;
    --color-success: #7cb387;
    --color-success-highlight: #223a29;
  }
}

/* ============ BASE TYPE ============ */
body {
  font-family: var(--font-body);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--narrow {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-primary);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-border) l c h / 0.5);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}
.site-header--hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-6);
}
.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.logo-word {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text);
}
.logo-word span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.main-nav ul {
  display: flex;
  gap: var(--space-6);
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-1);
}
.main-nav a:hover {
  color: var(--color-text);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.theme-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
}

.lang-toggle {
  min-width: 38px;
  height: 38px;
  padding: 0 var(--space-2);
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: none;
}
.lang-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--color-text);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  min-height: 44px;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-navy-2);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
}
[data-theme='dark'] .btn-primary:hover,
@media (prefers-color-scheme: dark) {
  .btn-primary:hover { color: var(--color-navy-2); }
}
.btn-ghost {
  background: transparent;
  border-color: oklch(from var(--color-text) l c h / 0.35);
  color: var(--color-text);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-block {
  width: 100%;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-block: var(--space-32) var(--space-16);
  overflow: hidden;
  color: #f4efe3;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0.08 0.03 250 / 0.55) 0%, oklch(0.06 0.03 250 / 0.78) 55%, oklch(0.05 0.02 250 / 0.94) 100%),
    linear-gradient(100deg, oklch(0.05 0.02 250 / 0.55) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5c06b;
  margin-bottom: var(--space-6);
}
.hero-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: #e5c06b;
}
.hero h1 {
  font-size: var(--text-hero);
  color: #fbf6ea;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: #e5c06b;
}
.hero p.lede {
  font-size: var(--text-lg);
  color: #d9d2c0;
  max-width: 52ch;
  margin-bottom: var(--space-10);
  font-family: var(--font-body);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero .btn-ghost {
  border-color: oklch(1 0 0 / 0.35);
  color: #fbf6ea;
}
.hero .btn-ghost:hover {
  border-color: #e5c06b;
  color: #e5c06b;
}
.hero-stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-16);
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fbf6ea;
}
.hero-stat span {
  font-size: var(--text-xs);
  color: #b7ae98;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ VIDEO SECTIONS ============ */
.video-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: var(--text-xl);
  color: var(--color-text);
  max-width: 32ch;
}
.section-head p {
  color: var(--color-text-muted);
  max-width: 44ch;
  font-size: var(--text-sm);
}
.video-grid-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-navy-2);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}
.video-side-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.stat-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.stat-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.stat-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.subscribe-card {
  background: var(--color-navy);
  color: #f2ecdd;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.subscribe-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fbf6ea;
}
.subscribe-card p {
  font-size: var(--text-sm);
  color: #b7ae98;
}
.subscribe-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}
.subscribe-divider::before,
.subscribe-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: oklch(1 0 0 / 0.14);
}
.subscribe-divider span {
  font-size: var(--text-xs);
  color: #9b8f78;
  white-space: nowrap;
}
.subscribe-form {
  display: flex;
  gap: var(--space-2);
}
.subscribe-form input {
  flex: 1;
  min-width: 0;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid oklch(1 0 0 / 0.18);
  background: oklch(1 0 0 / 0.06);
  color: #f2ecdd;
  font-size: var(--text-sm);
}
.subscribe-form input::placeholder {
  color: #8a7f6a;
}
.subscribe-form input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.subscribe-card .btn-ghost {
  border-color: oklch(1 0 0 / 0.3);
  color: #f2ecdd;
  flex-shrink: 0;
}
.subscribe-card .btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.subscribe-status {
  font-size: var(--text-xs);
  min-height: 1em;
}
.subscribe-status.is-success { color: #7fd9a0; }
.subscribe-status.is-error { color: #e79b9b; }
@media (max-width: 480px) {
  .subscribe-form {
    flex-direction: column;
  }
}

/* ============ ABOUT ============ */
.about-section {
  background: var(--color-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-copy h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}
.about-copy p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
}
.about-copy p.pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text);
  border-left: none;
  padding-left: 0;
  margin-block: var(--space-6);
}
.about-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-divider);
}
.about-facts b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
}
.about-facts span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============ ARTISTS ============ */
.artists-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.artist-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-navy-2);
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-sm);
}
.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.artist-card:hover img {
  transform: scale(1.06);
}
.artist-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, oklch(0.05 0.02 250 / 0.9) 100%);
}
.artist-card-info {
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 1;
}
.artist-card-info b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: #fbf6ea;
}
.artist-card-info span {
  font-size: var(--text-xs);
  color: #e5c06b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.artist-card--wide {
  grid-column: span 2;
}

/* ============ LIBRARY ============ */
.library-section {
  background: var(--color-bg);
}
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}
.library-card {
  text-decoration: none;
  color: var(--color-text);
  display: block;
}
.library-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-navy-2);
  margin-bottom: var(--space-3);
  border: 1px solid var(--color-border);
}
.library-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.library-card:hover .library-thumb img {
  transform: scale(1.04);
}
.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--transition-interactive);
  background: oklch(0.05 0.02 250 / 0.25);
}
.library-card:hover .play-badge {
  opacity: 1;
}
.play-badge svg {
  width: 44px;
  height: 44px;
  color: #fbf6ea;
}
.library-card h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.library-meta {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============ CONTACT ============ */
.contact-section {
  background: var(--color-navy);
  color: #f2ecdd;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-copy .eyebrow {
  color: #e5c06b;
}
.contact-copy .eyebrow::before {
  background: #e5c06b;
}
.contact-copy h2 {
  font-size: var(--text-xl);
  color: #fbf6ea;
  margin-bottom: var(--space-5);
}
.contact-copy p {
  color: #b7ae98;
  margin-bottom: var(--space-8);
}
.contact-detail {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: #d9d2c0;
}
.contact-detail svg {
  width: 18px;
  height: 18px;
  color: #e5c06b;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.field {
  margin-bottom: var(--space-5);
}
.field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-size: var(--text-sm);
  min-height: 44px;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.18);
}
.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.field-checkbox input {
  width: 18px;
  height: 18px;
  min-height: unset;
  margin-top: 2px;
  accent-color: var(--color-primary);
}
.field-checkbox label {
  text-transform: none;
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}
.field-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
  min-height: 1em;
}
.form-status {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  display: none;
}
.form-status.is-success {
  display: block;
  background: var(--color-success-highlight);
  color: var(--color-success);
}
.form-status.is-error {
  display: block;
  background: var(--color-error-highlight);
  color: var(--color-error);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--color-navy-2);
  color: #b7ae98;
  padding-block: var(--space-16) var(--space-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.footer-brand .logo-mark {
  color: #e5c06b;
}
.footer-brand p {
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  max-width: 32ch;
}
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  border: 1px solid oklch(1 0 0 / 0.15);
  color: #e5c06b;
}
.footer-social a:hover {
  border-color: #e5c06b;
  background: oklch(1 0 0 / 0.06);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f2ecdd;
  margin-bottom: var(--space-4);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: #b7ae98;
  text-decoration: none;
}
.footer-col a:hover {
  color: #e5c06b;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  font-size: var(--text-xs);
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ============ SCROLL REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .video-grid-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artist-card--wide {
    grid-column: span 2;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav ul,
  .header-actions .btn {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .hero {
    min-height: 100vh;
    padding-block: var(--space-24) var(--space-12);
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6) var(--space-8);
  }
  .logo-word span {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artist-card--wide {
    grid-column: span 2;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--color-text);
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
}
.mobile-nav .btn {
  margin-top: var(--space-10);
}
