/* ═══════════════════════════════════════════════
   SAMIR LANGUS — style.css
   Brand system, reset, layout, components
═══════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --bg:          #080608;
  --bg-2:        #0f0d12;
  --blue:        #1B4F8A;
  --blue-light:  #2563ab;
  --orange:      #C85A1A;
  --orange-light:#e06b2a;
  --gold:        #C8963E;
  --gold-light:  #d4a84e;
  --purple:      #3D1F6E;
  --text:        #F0EBE0;
  --text-muted:  #9A9088;
  --border:      rgba(240, 235, 224, 0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-width: 1200px;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container-pad: clamp(1.5rem, 5vw, 3rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── UTILITIES ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-pad);
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 2rem;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(8, 6, 8, 0.6);
  color: var(--text);
  border: 1px solid rgba(240, 235, 224, 0.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(200, 150, 62, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── SHOW BAR ────────────────────────────────── */
.show-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 44px;
  overflow: hidden;
  background: var(--gold);
  color: #0a0808;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.show-bar.dismissed { display: none; }

.show-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.show-bar__label {
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  opacity: 0.65;
  white-space: nowrap;
}

.show-bar__date,
.show-bar__venue {
  white-space: nowrap;
}

.show-bar__sep { opacity: 0.4; }

.show-bar__tickets {
  color: #0a0808;
  border: 1px solid rgba(0, 0, 0, 0.35);
  padding: 0.2rem 0.8rem;
  border-radius: 2px;
  margin-left: 0.4rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.show-bar__tickets:hover { background: rgba(0, 0, 0, 0.12); }

.show-bar__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}
.show-bar__close:hover { color: #0a0808; }

/* Push nav down when show bar is present */
.has-show-bar .nav { top: 44px; }

@media (max-width: 600px) {
  .show-bar__sep--venue,
  .show-bar__venue { display: none; }
  .show-bar { font-size: 0.75rem; padding-inline: 2.5rem; }
}

/* ─── NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300; /* above show-bar (200) so Book button is always clickable */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--container-pad);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(8, 6, 8, 0.92);
  backdrop-filter: blur(12px);
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav__logo span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  color: var(--gold) !important;
  border: 1px solid rgba(200, 150, 62, 0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, background 0.2s !important;
}
.nav__cta:hover {
  background: rgba(200, 150, 62, 0.1);
  border-color: var(--gold) !important;
}


.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F0EBE0;
  transition: all 0.3s var(--ease-out);
}
.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); }

/* Blur overlay — hidden on desktop */
.nav__overlay {
  display: none;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 8, 0.35) 0%,
    rgba(8, 6, 8, 0.5) 50%,
    rgba(8, 6, 8, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: var(--container-pad);
  max-width: 700px;
}

.hero__label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hero__name--accent {
  color: var(--gold);
}

.hero__arabic {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* ─── ABOUT ──────────────────────────────────── */
.about {
  background: var(--bg-2);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.9);
}

.about__image::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid rgba(200, 150, 62, 0.2);
  z-index: -1;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about__text p strong {
  color: var(--text);
  font-weight: 500;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.badge {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.about__quotes {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 2px solid rgba(200, 150, 62, 0.3);
  padding-left: 1.5rem;
}

.about__quote p {
  font-family: var(--font-display);
  font-size: 1rem !important;
  font-style: italic;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 0.4rem !important;
}

.about__quote cite {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* ─── MUSIC ──────────────────────────────────── */
.music {
  background: var(--bg);
}

.music__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── MUSIC — FEATURED VIDEO ────────────────── */
.music__featured {
  margin-bottom: 4rem;
}

.music__featured-label {
  margin-bottom: 1rem;
}

.music__featured-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}

.music__featured-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ─── MUSIC — VIDEO GRID ─────────────────────── */
.music__videos {
  margin-bottom: 4rem;
}

.music__videos-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.music__videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* default: 3 cols, overridden by modifier classes */
  gap: 1rem;
}

/* Grid column modifiers — set by PHP based on samir_video_grid option */
.music__videos-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.music__videos-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ─── MUSIC — CAROUSEL ───────────────────────── */
.music__carousel {
  margin-top: 3rem;
}

.music__carousel-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.music__carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.music__carousel-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  padding: 0;
}
.music__carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.music__carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.music__carousel-track-outer {
  overflow: hidden;
  flex: 1;
}

.music__carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.music__carousel-slide {
  display: grid;
  gap: 1rem;
  flex: 0 0 100%;
  /* columns set via inline style by JS to match grid_cols */
}

.music__carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.music__carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.music__carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.music__video-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out);
}
.music__video-card:hover { transform: translateY(-4px); }

.music__video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg);
}

.music__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), filter 0.4s;
  filter: brightness(0.85) saturate(0.8);
}
.music__video-card:hover .music__video-thumb img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.music__video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 8, 0.4);
  transition: background 0.3s;
}
.music__video-card:hover .music__video-play {
  background: rgba(200, 150, 62, 0.25);
}

.music__video-play span {
  font-size: 1.5rem;
  color: var(--text);
  opacity: 0.85;
  line-height: 1;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.music__video-card:hover .music__video-play span {
  transform: scale(1.2);
  opacity: 1;
}

.music__video-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 2px;
}

.music__video-info {
  padding: 0.75rem 0 0;
}

.music__video-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.music__video-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ─── LIVE ───────────────────────────────────── */
.live {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-pad);
}

.live__bg {
  position: absolute;
  inset: 0;
}

.live__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.7);
}

.live__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 79, 138, 0.4) 0%,
    rgba(8, 6, 8, 0.7) 60%
  );
}

.live__content {
  position: relative;
  z-index: 2;
}

.live__venues {
  margin-bottom: 4rem;
}

.live__venues-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.live__venues-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.live__venues-list span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.live__venues-list span:hover {
  opacity: 1;
  color: var(--gold);
}

.live__shows-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.live__show-empty {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  max-width: 500px;
}
.live__show-empty p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.live__show-empty a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Upcoming show rows */
.live__upcoming,
.live__past {
  margin-bottom: 3.5rem;
}

.live__shows-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}

.live__show {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.live__show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3rem;
  flex-shrink: 0;
}

.live__show-month {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.live__show-day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.live__show-info {
  flex: 1;
}

.live__show-venue {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
}

.live__show-city {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.live__show-ticket {
  font-size: 0.72rem;
  padding: 0.45rem 1rem;
  flex-shrink: 0;
}

/* Past highlights list */
.live__past-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.live__past-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.live__past-year {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 2.5rem;
}

/* ─── PORTRAITS ──────────────────────────────── */
.press {
  background: var(--bg-2);
}

.press__gallery {
  margin-bottom: 5rem;
}

.press__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 4px;
}

.press__photo {
  overflow: hidden;
  cursor: zoom-in;
}

.press__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
  filter: saturate(0.75) brightness(0.9);
}
.press__photo:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

/* ─── CONTACT ────────────────────────────────── */
.contact {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-pad);
}

.contact__bg {
  position: absolute;
  inset: 0;
}
.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.25) saturate(0.5);
}
.contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 6, 8, 0.85) 0%,
    rgba(8, 6, 8, 0.4) 100%
  );
}

.contact__content {
  position: relative;
  z-index: 2;
}

.contact__text {
  max-width: 560px;
}

.contact__text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact__links {
  margin-bottom: 2.5rem;
}

.contact__socials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact__socials a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.contact__socials a:hover { color: var(--gold); }
.contact__socials svg { flex-shrink: 0; }

/* ─── VENUE STRIP ────────────────────────────── */
.venues-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 1rem;
  padding-inline: var(--container-pad);
}

.venues-strip__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 1.25rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

.venues-strip__track span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.venues-strip__highlight {
  color: var(--text) !important;
  font-weight: 600 !important;
}

.venues-strip__dot {
  color: var(--gold) !important;
  font-size: 0.4rem !important;
  letter-spacing: 0 !important;
}

/* ─── AS SEEN AT — venue logo infinite scroll ── */
.venues-section {
  padding-block: 3rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}

.venues-section__inner {
  text-align: center;
  margin-bottom: 2rem;
  padding-inline: var(--container-pad);
}

.venues-section .section__label {
  display: inline-block;
}

.venues-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  cursor: default;
}

.venues-scroll-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: venuesScroll 50s linear infinite;
}

@keyframes venuesScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.venues-scroll-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venues-scroll-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.venues-scroll-logo {
  max-height: 48px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.75;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.venues-scroll-logo:hover,
.venues-scroll-link:hover .venues-scroll-logo {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.venues-scroll-text-logo {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.venues-scroll-link:hover .venues-scroll-text-logo,
.venues-scroll-item:hover .venues-scroll-text-logo {
  color: var(--text);
}

/* ─── GNAWA LOVE ALBUM ───────────────────────── */
.album {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.album__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.album__embed {
  width: 100%;
}


.album__embed iframe {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.album__text .section__title {
  margin-bottom: 1.5rem;
}

.album__text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.album__formats {
  font-size: 0.78rem !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 2rem !important;
}

.album__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 2.5rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__socials {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer__socials a {
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.footer__socials a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.footer__name span { color: var(--gold); }

.footer__arabic {
  color: var(--text-muted) !important;
  font-style: italic;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── BLOG — ARCHIVE ─────────────────────────── */
.blog-archive {
  background: var(--bg-2);
  min-height: 100vh;
  padding-top: calc(var(--section-pad) + 4rem);
}

.blog-archive__header {
  text-align: center;
  margin-bottom: 5rem;
}

.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.post-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 150, 62, 0.3);
}

.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.9);
  transition: transform 0.5s var(--ease-out), filter 0.4s;
}
.post-card:hover .post-card__thumb img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}

.post-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card__meta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.post-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.post-card__read-more {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s;
  align-self: flex-start;
}
.post-card__read-more:hover { color: var(--gold-light); }

/* ─── BLOG — PAGINATION ──────────────────────── */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 4rem;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.blog-pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.blog-pagination .current {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── BLOG — SINGLE POST ─────────────────────── */
.single-post {
  background: var(--bg-2);
  min-height: 100vh;
  padding-top: calc(var(--section-pad) + 4rem);
}

.single-post__header {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  margin-bottom: 3rem;
}

.single-post__meta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.single-post__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 2rem;
}

.single-post__feat-img {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 4rem;
  padding-inline: var(--container-pad);
}
.single-post__feat-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid var(--border);
}

.single-post__content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-bottom: 6rem;
}

.single-post__content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.single-post__content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}
.single-post__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}
.single-post__content blockquote {
  border-left: 2px solid rgba(200, 150, 62, 0.3);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
}
.single-post__content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-post__content img {
  width: 100%;
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.single-post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.single-post__back:hover { color: var(--gold); }

/* ─── PAGE TEMPLATE ──────────────────────────── */
.page-content {
  background: var(--bg-2);
  min-height: 100vh;
  padding-top: calc(var(--section-pad) + 4rem);
  padding-bottom: var(--section-pad);
}

.page-content__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.page-content__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.page-content__body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.page-content__body h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}
.page-content__body a {
  color: var(--gold);
  text-decoration: underline;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  /* Music grid — 3-col stays 3-col, 2-col stays 2-col at tablet */
  .music__videos-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .music__videos-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .press__gallery-grid {
    grid-template-rows: repeat(2, 240px);
  }
  .blog-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Nav bar — logo left, hamburger right */
  .nav {
    position: fixed;
    background: #080608;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
  }

  /* Dropdown menu */
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #080608;
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0 1.25rem;
    gap: 0;
    list-style: none;
    /* hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
    z-index: 99;
  }
  .nav__links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    font-size: 0.85rem;
    padding: 0.85rem var(--container-pad);
  }
  .nav__hamburger { display: flex; }

  /* Venue strip — one item per line, no dots */
  .venues-strip__track {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .venues-strip__dot { display: none; }

  /* "As Seen At" venues section — mobile */
  .venues-section { padding-block: 2rem 1.5rem; }
  .venues-scroll-text-logo { font-size: 0.7rem; letter-spacing: 0.12em; }
  .venues-scroll-logo { max-height: 36px; max-width: 90px; }
  .venues-scroll-track { gap: 2rem; }

  /* Book — plain list item in dropdown, no button styling */
  .nav__links .nav__cta {
    color: var(--text-muted) !important;
    border: none !important;
    padding: 0.85rem var(--container-pad) !important;
    border-radius: 0 !important;
    background: none !important;
  }
  .nav__links .nav__cta:hover {
    color: var(--text) !important;
    background: none !important;
  }

  /* Blur overlay */
  .nav__overlay {
    display: block;
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 98;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(8, 6, 8, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
  }
  .nav__overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Album */
  .album__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__image img { height: 380px; }
  .about__image::before { display: none; }

  /* Music grid — both col variants collapse to 2 on tablet */
  .music__videos-grid--cols-2,
  .music__videos-grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Carousel slide — collapse to 1 col on tablet */
  .music__carousel-slide {
    grid-template-columns: 1fr !important;
  }

  /* Carousel buttons — smaller on mobile */
  .music__carousel-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.4rem;
  }

  /* Press gallery — 2 cols, no orphan trick */
  .press__gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  /* Contact — darken overlay on mobile so text is always legible */
  .contact__overlay {
    background: rgba(8, 6, 8, 0.75);
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Blog */
  .blog-archive__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── EMAIL SIGNUP ────────────────────────────── */
.email-signup {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.email-signup__inner {
  max-width: 680px;
  text-align: center;
}

.email-signup .section__header {
  margin-bottom: 2.5rem;
}

.email-signup__subtext {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.email-signup__form { width: 100%; }

.email-signup__fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.email-signup__input {
  flex: 1;
  min-width: 160px;
  background: rgba(240, 235, 224, 0.06);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.email-signup__input::placeholder { color: var(--text-muted); }
.email-signup__input:focus { border-color: var(--gold); }

.btn--gold {
  background: var(--gold);
  color: #0a0808;
  border: 1px solid var(--gold);
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.email-signup__btn {
  white-space: nowrap;
  padding-inline: 2rem;
}

.email-signup__privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

@media (max-width: 600px) {
  .email-signup__fields { flex-direction: column; }
  .email-signup__input { min-width: 0; width: 100%; }
  .email-signup__btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  /* Music grid — single column on small phones */
  .music__videos-grid--cols-2,
  .music__videos-grid--cols-3 {
    grid-template-columns: 1fr;
  }

  /* Press gallery — single column */
  .press__gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Contact buttons — stack on small phones */
  .contact__links .btn,
  .music__cta .btn {
    width: 100%;
    justify-content: center;
  }
  .music__cta {
    flex-direction: column;
    align-items: stretch;
  }

  /* About image — shorter on small phones */
  .about__image img { height: 280px; }
}
