@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --black: #0e0e0e;
  --white: #ffffff;
  --cream: #f4f0ea;
  --muted: #9b9b9b;
  --orange: #ff5a1f;
  --line: rgba(255,255,255,0.14);
  --dark-line: rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw;
  color: var(--white);
  background: rgba(14,14,14,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-logo{
    width:auto;
    height:70px;
    max-width:160px;
    object-fit:contain;
    display:block;
}

.logo{
    display:flex;
    align-items:center;
}

.logo span {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--orange);
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a:hover { color: var(--orange); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 1.8rem;
}

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 5vw 90px;
    background:
        radial-gradient(circle at 78% 22%, rgba(255,90,31,.25), transparent 32%),
        radial-gradient(circle at 18% 76%, rgba(255,90,31,.12), transparent 35%),
        linear-gradient(135deg, #050505 0%, #0f0f0f 48%, #2a0902 100%);
    overflow:hidden;
}
.hero-content {
    max-width: 980px;
    position: relative;
    z-index: 2;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 16px;
}

h1, h2, h3 { line-height: 0.95; margin: 0; }

h1 {
  font-size: clamp(4rem, 10vw, 9.5rem);
  letter-spacing: -0.08em;
  max-width: 1100px;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  letter-spacing: -0.07em;
}

h3 {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  color: rgba(255,255,255,0.82);
  margin: 28px 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.75rem;
  transition: 0.25s ease;
}

.btn-primary {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.btn-secondary {
  color: inherit;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

.section {
  padding: 110px 5vw;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: start;
}

.split p, .statement p, .cta p {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.dark {
  background: var(--black);
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

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

.artist-card, .service-grid article, .news-grid article {
  border: 1px solid var(--dark-line);
  padding: 24px;
  background: rgba(255,255,255,0.5);
}

.dark .artist-card, .dark .news-grid article {
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}

.image-placeholder {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(255,90,31,0.85), rgba(255,255,255,0.04)),
    #222;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  margin-bottom: 22px;
  color: white;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: 2rem;
}

.artist-card p, .service-grid p, .news-grid p {
  color: var(--muted);
}

.artist-card a {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid article {
  min-height: 250px;
  border-color: var(--dark-line);
}

.statement {
  background: var(--orange);
  color: var(--black);
}

.statement .eyebrow { color: var(--black); }

.statement p {
  max-width: 900px;
}

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

.news-grid span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.cta h2 { margin-bottom: 24px; }

.site-footer {
  background: var(--black);
  color: white;
  padding: 42px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.site-footer p { color: var(--muted); }

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.footer-links a:hover { color: var(--orange); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 5vw;
    background: var(--black);
  }
  .main-nav.open { display: flex; }
  .split, .artist-grid, .service-grid, .news-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 82px 5vw; }
  .site-footer { flex-direction: column; }
}
/* ==========================================
   ARTIST GALLERY (Portrait Layout)
========================================== */

.artist-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
    margin-top:40px;
}

.artist-card{
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    transition:.35s ease;
    display:flex;
    flex-direction:column;
}

.artist-card:hover{
    transform:translateY(-6px);
    border-color:#ff5a1f;
}

.artist-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    object-position:center;
    display:block;
    border-radius:10px;
}

.artist-card:hover{
    transform:translateY(-6px);
    border-color:#ff5a1f;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}
/* ===== MEDIA LOGO WALL ===== */

.logo-wall{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:32px;
    margin-top:50px;

}

.logo-wall{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:32px;
    margin-top:50px;
}

.logo-wall img:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(255,90,31,.25);
}

@media(max-width:900px){
    .logo-wall{
        grid-template-columns:repeat(2,1fr);
    }
}
/* ===== MEDIA NETWORK LOGO WALL FIX ===== */

.logo-wall{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:24px;
    margin-top:50px;
}

.logo-wall img{
    width:100%;
    height:120px;
    max-height:120px;
    object-fit:contain;
    object-position:center;
    background:#ffffff;
    padding:24px;
    border-radius:14px;
    box-sizing:border-box;
    display:block;
}

.logo-wall img:hover{
    transform:translateY(-6px);
}

@media(max-width:900px){
    .logo-wall{
        grid-template-columns:repeat(2, 1fr);
    }
}
/* ===== EVENT CATEGORY CARDS ===== */

.service-grid article{
    background:#181818;
    border:1px solid rgba(255,255,255,.12);
}

.service-grid article p{
    color:#bdbdbd;
}
.hero h1,
.hero .hero-text{
    color:#ffffff;
}
.hero-content{
    position:relative;
    z-index:2;
}
.page-hero{
    min-height:auto;
    padding:140px 5vw 80px;
    align-items:flex-start;
}
/* Artist page image treatments */

.artist-grid.highlights-grid .artist-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.artist-grid.highlights-grid .artist-card img {
    width: 100%;
    height: 240px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}

.artist-grid.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.artist-grid.gallery-grid .artist-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.artist-grid.gallery-grid .artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}
/* EVENTS — ORANGE FEATURE IMAGE */

.events-intention {
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(58, 18, 8, 0.96) 0%,
            rgba(58, 18, 8, 0.82) 45%,
            rgba(58, 18, 8, 0.38) 100%
        ),
        url("../images/events-orange.jpg") center / cover no-repeat;
    color: #ffffff;
}

.events-intention h2,
.events-intention h3,
.events-intention p {
    color: inherit;
}
/* HOMEPAGE FEATURED ARTISTS ONLY */

.featured-grid .artist-card {
    overflow: hidden;
}

.featured-grid .artist-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.artist-card img{
    width:100%;
    aspect-ratio:4 / 5;
    height:auto;
    object-fit:cover;
    object-position:center;
    display:block;
    border-radius:10px;
}
@media (max-width: 600px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}
.events-intention {
    background: linear-gradient(
        135deg,
        rgba(255,90,31,.16),
        rgba(255,90,31,.03)
    );
}
/* ==========================================
   Abacikozi Gallery
========================================== */

.abacikozi-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.abacikozi-gallery .artist-card{
    min-height:auto;
}

.abacikozi-gallery .artist-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    border-radius:12px;
}
/* ARTIST HIGHLIGHTS — SHOW FULL TEXT */

.highlights-grid .artist-card,
.artist-grid.highlights-grid .artist-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 500px;
    overflow: visible;
}

.highlights-grid .artist-card img,
.artist-grid.highlights-grid .artist-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
    border-radius: 10px;
}

.highlights-grid .artist-card h3,
.artist-grid.highlights-grid .artist-card h3 {
    margin: 16px 0 8px;
    line-height: 1.2;
}

.highlights-grid .artist-card p,
.artist-grid.highlights-grid .artist-card p {
    display: block;
    margin: 0;
    line-height: 1.55;
    max-height: none;
    overflow: visible;
    white-space: normal;
}
/* ==================================================
   ABACIKOZI PHOTO GALLERY - LANDSCAPE LAYOUT
================================================== */

.abacikozi-landscape-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.abacikozi-landscape-gallery .artist-card {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
    padding: 14px;
    overflow: hidden;
}

.abacikozi-landscape-gallery .artist-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .abacikozi-landscape-gallery {
        grid-template-columns: 1fr;
    }

    .abacikozi-landscape-gallery .artist-card img {
        object-fit: contain;
        background: #ffffff;
    }
}


/* ==================================================
   KALEB NOZE ALBUM COVERS
================================================== */

.artist-grid.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.artist-grid.highlights-grid .artist-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 18px;
    overflow: hidden;
}

.artist-grid.highlights-grid .artist-card img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    background: #111111;
}

.artist-grid.highlights-grid .artist-card h3 {
    margin: 16px 0 8px;
    line-height: 1.2;
}

.artist-grid.highlights-grid .artist-card p {
    display: block;
    margin: 0;
    line-height: 1.55;
    max-height: none;
    overflow: visible;
    white-space: normal;
}

@media (max-width: 900px) {
    .artist-grid.highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .artist-grid.highlights-grid {
        grid-template-columns: 1fr;
    }

    .artist-grid.highlights-grid .artist-card img {
        height: 320px;
    }
}