/* ============================================
   GLANE — Artist Site (FKZTV)
   Street sleek / Caribbean-hip-hop fusion theme
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --panel: #161616;
  --line: #2a2a2a;
  --white: #f4f2ec;
  --grey: #a8a49c;
  --gold: #e8b13d;
  --gold-dim: #9c7a2c;
  --green: #2fae60;
  --red: #c8322a;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay for street texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .display {
  font-family: 'Bebas Neue', 'Anton', 'Arial Narrow', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-case { text-transform: none; }

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

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand .fkztv {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 3px 7px;
  border-radius: 4px;
}

.brand .name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s, background 0.2s;
}

.nav-cta:hover { transform: translateY(-1px); background: #f4c860; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 75% 15%, rgba(232,177,61,0.14), transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(47,174,96,0.14), transparent 60%),
    var(--black);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-copy h1 {
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  color: var(--white);
}

.hero-copy h1 span {
  color: var(--gold);
  display: block;
}

.hero-sub {
  margin-top: 22px;
  max-width: 480px;
  color: var(--grey);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,177,61,0.25); }

.btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

.hero-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.9);
  transform: scale(1.02);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 45%, rgba(10,10,10,0.85) 100%),
              linear-gradient(90deg, rgba(232,177,61,0.18), transparent 40%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.portrait-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}

.portrait-tag .dot { color: var(--green); }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== Section shared ===== */
section { position: relative; padding: 120px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 54px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-head h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); }

.divider {
  border: none;
  border-top: 1px solid var(--line);
}

/* ===== dayBREAK EP ===== */
.ep {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ep-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.ep-art {
  aspect-ratio: 1/1;
  border-radius: 6px;
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, #1c1c1c, #0a0a0a 60%),
    radial-gradient(circle at 30% 20%, rgba(232,177,61,0.35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(47,174,96,0.3), transparent 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ep-art .ep-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-align: center;
  line-height: 1;
}

.ep-art .ep-word small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 14px;
}

.ep-meta {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--grey);
}
.ep-meta strong { color: var(--white); }

.ep-details h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.ep-details .ep-tagline {
  color: var(--grey);
  margin-bottom: 28px;
  max-width: 520px;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 36px;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--panel);
  transition: border-color 0.2s, transform 0.15s;
}
.platform-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.platform-btn.soon { opacity: 0.55; cursor: default; }
.platform-btn.soon:hover { transform: none; border-color: var(--line); }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(47,174,96,0.15), transparent 50%);
  mix-blend-mode: overlay;
}

.about-copy p {
  color: var(--grey);
  margin-bottom: 18px;
  font-size: 1.02rem;
  max-width: 560px;
}

.about-copy p strong { color: var(--white); }

.roots {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.roots div {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.roots .roots-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.roots .roots-value { font-size: 0.95rem; color: var(--white); }

/* ===== Shows & News ===== */
.news {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.news-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }

.news-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.news-tag.show { background: rgba(47,174,96,0.15); color: var(--green); border: 1px solid rgba(47,174,96,0.35); }
.news-tag.drop { background: rgba(232,177,61,0.15); color: var(--gold); border: 1px solid rgba(232,177,61,0.35); }
.news-tag.update { background: rgba(200,50,42,0.15); color: #e5645c; border: 1px solid rgba(200,50,42,0.35); }

.news-card h3 { font-size: 1.3rem; margin-bottom: 8px; letter-spacing: 0.02em; }
.news-card .news-date { color: var(--grey); font-size: 0.8rem; margin-bottom: 12px; }
.news-card p { color: var(--grey); font-size: 0.92rem; }

.news-note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--grey);
  border-left: 2px solid var(--line);
  padding-left: 14px;
}

.next-up {
  margin-top: 28px;
  padding: 30px 32px;
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(232,177,61,0.08), rgba(47,174,96,0.06));
}

.next-up-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.next-up-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.next-up p {
  color: var(--grey);
  max-width: 560px;
  font-size: 0.95rem;
}

/* ===== Follow / Contact ===== */
.follow { text-align: center; }
.follow h2 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 18px; }
.follow p { color: var(--grey); max-width: 520px; margin: 0 auto 40px; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.social-btn {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.2s, transform 0.2s, color 0.2s;
  color: var(--white);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.booking-box {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.booking-box .label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.booking-box .value { font-size: 1.05rem; }

/* ===== Footer ===== */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--grey);
}
.footer-row .fkztv-mark { color: var(--gold); letter-spacing: 0.1em; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; max-width: 340px; margin: 0 auto; }
  .ep-grid, .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 340px; margin: 0 auto; }
  .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px 28px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-cta {
    display: inline-flex;
    margin: 0 28px 24px;
  }
  section { padding: 80px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
