/* =========================================
   ALL IN ARTISTS — Main Stylesheet v2
   Cool slate palette, editorial grid
   ========================================= */

/* ----- BRAND FONTS — Brachial ----- */

/* Display / headings — SemiWide */
@font-face {
  font-family: 'Brachial Display';
  src: url('../fonts/Brachial-Bold-SemiWide.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brachial Display';
  src: url('../fonts/Brachial-SemiBold-SemiWide.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Body / UI — Regular width */
@font-face {
  font-family: 'Brachial';
  src: url('../fonts/Brachial-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brachial';
  src: url('../fonts/Brachial-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brachial';
  src: url('../fonts/Brachial-Normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brachial';
  src: url('../fonts/Brachial-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Neue Haas Display Thin — artist bios only */
@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('../fonts/NeueHaasDisplayThin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* ----- TOKENS ----- */
:root {
  --bg:        #0C0E15;
  --bg-alt:    #111420;
  --bg-card:   #161A26;
  --bg-lifted: #1C2030;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);
  --text:      #E8E5E0;
  --text-2:    #A8ABBE;
  --muted:     #606580;
  --accent:    #b2ff00;
  --accent-2:  rgba(178,255,0,0.10);
  --accent-b:  #b2ff00;
  --accent-c:  #FF2C54;
  --font-d:    'Brachial Display', sans-serif;
  --font-b:    'Brachial', sans-serif;
  --font-c:    'Brachial', sans-serif;
  --nav-h:     68px;
  --radius:    2px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
  font-family: var(--font-b);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

/* ----- CONTAINER ----- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- NAV ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s;
  border-top: 2px solid var(--accent);
}
.nav.scrolled {
  background: rgba(12,14,21,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 26px;
  width: auto;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.nav__logo:hover img { opacity: 1; }

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active { color: var(--accent); }

.nav__book {
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.nav__book:hover { background: var(--accent); color: var(--bg); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer a {
  font-family: var(--font-d);
  font-size: 42px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav__drawer a:last-child { border: none; margin-top: 16px; }
.nav__drawer a:hover { color: var(--text); }
.nav__drawer .btn--accent {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
}

/* ----- HOME HERO ----- */
.home-hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 48px;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(20,28,50,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,60,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 10%, rgba(0,228,255,0.06) 0%, transparent 60%);
}
.home-hero__title {
  font-family: var(--font-d);
  font-size: clamp(56px, 14vw, 240px);
  letter-spacing: 0.02em;
  line-height: 0.88;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.home-hero__sub {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-b);
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.home-hero__scroll {
  position: absolute;
  bottom: 28px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-c);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}
.home-hero__scroll-line { width: 40px; height: 1px; background: var(--muted); }

/* ----- ARTIST GRID (homepage) ----- */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--bg);
}

.artist-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  background: var(--bg-card);
}
.artist-card:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.artist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
  filter: saturate(0.85) brightness(0.85);
}
.artist-card--landscape .artist-card__img { object-position: center center; }
.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,18,0.92) 0%, rgba(8,10,18,0.28) 40%, transparent 65%);
  transition: background 0.4s;
}
.artist-card__name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 14px 16px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.15;
  transition: color 0.2s;
  word-break: break-word;
}
.artist-card__arrow {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.artist-card__arrow svg { width: 12px; height: 12px; stroke: white; fill: none; }

.artist-card:hover .artist-card__img { transform: scale(1.04); filter: saturate(1) brightness(0.9); }
.artist-card:hover .artist-card__overlay { background: linear-gradient(to top, rgba(8,10,18,0.8) 0%, rgba(8,10,18,0.12) 45%, transparent 65%); }
.artist-card:hover .artist-card__name { color: #fff; }
.artist-card:hover .artist-card__arrow { opacity: 1; transform: translateY(0); }

/* ----- SECTION GENERIC ----- */
.section { padding: 112px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 48px 0; }

/* ----- PAGE HERO (inner pages) ----- */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 56px;
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero__title {
  font-size: clamp(40px, 8vw, 120px);
  color: var(--text);
  margin-bottom: 20px;
}
.page-hero__lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

/* ----- ARTIST PAGE HERO ----- */
.artist-hero {
  position: relative;
  overflow: hidden;
  height: 58vh;
  min-height: 380px;
}
.artist-hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85);
}
.artist-hero--landscape .artist-hero__img { object-position: center center; }
.artist-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,14,21,0.1) 0%,
    transparent 20%,
    transparent 65%,
    rgba(12,14,21,0.92) 100%
  );
}
.artist-hero__content {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  padding: 0 24px;
  box-sizing: border-box;
}
.artist-hero__name {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
  word-break: break-word;
}
.artist-hero__tag {
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
}

/* Low-res notice */
.low-res-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-c);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 16px;
}

/* ----- ARTIST CONTENT ----- */
.artist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 64px 0;
  align-items: start;
}
.artist-bio__label {
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent-2);
}
.artist-bio__text {
  font-family: 'NeueHaasDisplay', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 100;
  color: var(--text-2);
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.artist-bio__text p + p { margin-top: 16px; }

/* ----- SOCIAL LINKS ----- */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  color: var(--text-2);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.social-link:hover {
  border-color: var(--border-2);
  background: var(--bg-lifted);
  transform: translateY(-2px);
}
.social-link svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Brand colours via href attribute selectors */
.social-link[href*="instagram"] svg { fill: #E1306C; }
.social-link[href*="soundcloud"] svg { fill: #FF5500; }
.social-link[href*="spotify"] svg { fill: #1DB954; }
.social-link[href*="beatport"] svg { fill: #01FF95; }
.social-link[href*="ra.co"] svg { fill: #b0b0b0; }
.social-link[href*="tiktok"] svg { fill: #FF2D55; }
.social-link[href*="apple"] svg { fill: #FC3C44; }
.social-link[href*="bandcamp"] svg { fill: #1DA0C3; }

/* ----- ARTIST BOOKING FORM ----- */
.artist-booking {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.artist-booking__title {
  font-family: var(--font-d);
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.artist-booking__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: 28px;
}

/* ----- FORMS ----- */
.form-label {
  display: block;
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 13px;
  padding: 8px 12px;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--border-2); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23606580' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-select option { background: var(--bg-alt); }
.form-textarea { min-height: 90px; resize: vertical; }
.form-field { margin-bottom: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit-row { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.form-note { font-size: 13px; font-weight: 300; color: var(--muted); }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn--accent { background: var(--accent); color: #0C0E15; border: 1px solid var(--accent); }
.btn--accent:hover { background: #9de800; border-color: #9de800; }
.btn--outline { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn--outline:hover { border-color: var(--text); }

/* Form success */
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success__icon { font-size: 36px; color: var(--accent); margin-bottom: 16px; }
.form-success__title { font-family: var(--font-d); font-size: 36px; letter-spacing: 0.04em; margin-bottom: 8px; }
.form-success__text { color: var(--text-2); }

/* ----- ABOUT PAGE ----- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-intro__title { font-size: clamp(48px, 7vw, 88px); }
.about-intro__body { font-size: 16px; font-weight: 300; color: var(--text-2); line-height: 1.85; }
.about-intro__body p + p { margin-top: 20px; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.audience-card { background: var(--bg-card); padding: 36px 28px; border-radius: var(--radius); }
.audience-card__num { font-family: var(--font-d); font-size: 56px; color: var(--accent); opacity: 0.4; line-height: 1; margin-bottom: 12px; }
.audience-card__title { font-family: var(--font-d); font-size: 24px; letter-spacing: 0.04em; margin-bottom: 12px; }
.audience-card__text { font-size: 14px; font-weight: 300; color: var(--text-2); line-height: 1.7; }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.pillar-card { background: var(--bg-card); padding: 36px 28px; position: relative; overflow: hidden; border-top: 2px solid var(--accent-b); }
.pillar-card__num { font-family: var(--font-d); font-size: 80px; color: var(--accent-b); opacity: 0.18; position: absolute; top: 12px; right: 16px; line-height: 1; }
.pillar-card__title { font-family: var(--font-b); font-size: 24px; letter-spacing: 0.02em; margin-bottom: 14px; line-height: 1; color: var(--accent-b); }
.pillar-card__text { font-size: 14px; font-weight: 300; color: var(--text-2); line-height: 1.7; }

.standard-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.standard-table th { font-family: var(--font-c); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-align: left; padding: 10px 16px; border-bottom: 1px solid var(--border); }
.standard-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 300; color: var(--text-2); vertical-align: top; }
.standard-table td:first-child { font-family: var(--font-c); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--text); }
.standard-table tr:last-child td { border-bottom: none; }

/* ----- CONTACT PAGE ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.contact-info__title { font-family: var(--font-d); font-size: 32px; letter-spacing: 0.04em; margin-bottom: 32px; }
.contact-info__item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info__item:first-of-type { border-top: 1px solid var(--border); }
.contact-info__role { font-family: var(--font-c); font-size: 13px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--accent-b); margin-bottom: 4px; }
.contact-info__name { font-family: var(--font-b); font-weight: 400; font-size: 13px; letter-spacing: 0.01em; margin-bottom: 4px; color: var(--text); }
.contact-info__email { font-size: 13px; color: var(--text-2); transition: color 0.2s; }
.contact-info__email:hover { color: var(--accent); }
.form-title { font-family: var(--font-d); font-size: 36px; letter-spacing: 0.04em; margin-bottom: 28px; }

/* ----- MARQUEE ----- */
.marquee-strip { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; background: var(--bg-alt); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-item { font-family: var(--font-c); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.marquee-dot { color: var(--accent); margin-right: 48px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----- QUOTE BLOCK ----- */
.quote-block { border-left: 3px solid var(--accent); padding: 28px 32px; background: var(--bg-alt); }
.quote-block__text { font-family: var(--font-d); font-size: clamp(28px, 4vw, 44px); letter-spacing: 0.03em; line-height: 1.1; color: var(--text); margin-bottom: 16px; }
.quote-block__attr { font-family: var(--font-c); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ----- SECTION HEADER ----- */
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; padding-bottom: 16px; border-bottom: 2px solid var(--accent-b); }
.section-header__title { font-size: clamp(36px, 6vw, 64px); }
.section-header__link { font-family: var(--font-c); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-b); opacity: 0.7; transition: color 0.2s, opacity 0.2s; }
.section-header__link:hover { color: var(--accent-b); opacity: 1; }

/* ----- FOOTER ----- */
.footer { background: var(--bg-alt); border-top: 2px solid var(--accent); padding: 32px 0 20px; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 24px; }
.footer__logo { font-family: var(--font-d); font-size: 28px; letter-spacing: 0.06em; margin-bottom: 8px; }
.footer__tagline { font-size: 12px; font-weight: 300; color: var(--text-2); line-height: 1.5; max-width: 280px; margin-top: 6px; }
.footer__logo-img { height: 20px; width: auto; opacity: 0.45; margin-bottom: 8px; }
.footer__nav-col h4 { font-family: var(--font-c); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); opacity: 0.6; margin-bottom: 10px; }
.footer__nav-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer__nav-col a { font-size: 13px; font-weight: 300; color: var(--text-2); transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.footer__nav-col a svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.footer__nav-col a:hover { color: var(--accent); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.footer__copy, .footer__credit { font-size: 11px; font-weight: 300; color: var(--muted); }
.accent { color: var(--accent); }

/* ----- CTA STRIP ----- */
.cta-strip { background: var(--bg-alt); padding: 72px 0; text-align: center; border-top: 1px solid var(--border); }
.cta-strip__title { font-size: clamp(40px, 7vw, 80px); margin-bottom: 20px; }
.cta-strip__sub { font-size: 16px; font-weight: 300; color: var(--text-2); margin-bottom: 36px; }

/* ----- SCROLL REVEAL ----- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }


/* ----- NAV & FOOTER LOGO ----- */
.nav__logo-img-real {
  height: 64px;
  width: auto;
  opacity: 0.92;
  transition: opacity 0.2s;
  display: block;
}
.nav__logo:hover .nav__logo-img-real { opacity: 1; }
.footer__logo-img-real {
  height: 56px;
  width: auto;
  opacity: 0.7;
  display: block;
  margin-bottom: 14px;
  margin-left: -6px;
  transition: opacity 0.2s;
}
.footer__logo-img-real:hover { opacity: 0.9; }
/* Legacy text fallbacks — hidden when SVG loads */
.nav__logo-text { display: none; }
.footer__logo-text { display: none; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .artist-grid { grid-template-columns: repeat(3, 1fr); }
  .about-intro { grid-template-columns: 1fr; gap: 36px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav__links { display: none; }
  .nav__book { display: none; }
  .nav__hamburger { display: flex; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .artist-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .artist-booking { padding: 28px 20px; }
  .section-header { flex-direction: column; gap: 12px; }
  .section { padding: 72px 0; }
  .artist-hero__name { font-size: clamp(22px, 6vw, 36px); }
  .artist-hero__content { padding: 0 16px; }
  .artist-content-single { padding: 32px 0; }
  .about-intro__title { font-size: clamp(40px, 10vw, 80px); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .home-hero { padding-bottom: 32px; }
  .home-hero__title { font-size: clamp(48px, 16vw, 100px); }
  .page-hero__title { font-size: clamp(36px, 10vw, 72px); }
  .artist-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .pillars-grid { gap: 12px; }
  .modal__panel { padding: 24px 16px 20px; }
}

/* =========================================
   BOOKING MODAL
   ========================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,5,10,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 48px 48px 40px;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.modal.open .modal__panel {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-2);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.modal__close:hover { border-color: var(--border-2); color: var(--text); }
.modal__title {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.modal__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* =========================================
   ARTIST CARD v2 — div wrapper + link + book btn
   ========================================= */
.artist-grid .artist-card {
  display: block; /* override any <a> remnants */
  cursor: default;
}
.artist-card__link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.artist-card__link:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.artist-card__book-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}
.artist-card:hover .artist-card__book-btn,
.artist-card:focus-within .artist-card__book-btn {
  opacity: 1;
  transform: translateY(0);
}
.artist-card__book-btn:hover { background: #bde800; }

/* =========================================
   ARTIST PAGE — single column layout
   ========================================= */
.artist-content-single {
  max-width: 720px;
  padding: 64px 0;
}
.artist-book-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.btn--large {
  font-size: 13px;
  padding: 14px 36px;
  letter-spacing: 0.16em;
}

/* =========================================
   RESPONSIVE — modal
   ========================================= */
@media (max-width: 768px) {
  .modal__panel { padding: 32px 24px 28px; }
  .modal__title { font-size: 22px; }
  .artist-content-single { padding: 40px 0; }
}
