@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:        #0a0a0a;
  --bg-card:   #121212;
  --bg-card-h: #181818;
  --bg-nav:    rgba(10,10,10,0.96);
  --gold:      #c9a84c;
  --gold-dim:  rgba(201,168,76,0.25);
  --text:      #e8e4dc;
  --text-dim:  #9a948a;
  --text-muted:#4e4b46;
  --border:    #1e1e1e;
  --nav-h:     68px;
  --font:      'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ─── NAVIGATION ────────────────────────────── */

.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
}

.nav-logo img { height: 32px; width: auto; display: block; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.7; }

.nav-links { list-style: none; display: flex; gap: 2.75rem; }
.nav-links a {
  font-family: var(--font);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); border-bottom-color: var(--gold-dim);
}

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.4rem; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--text-dim); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────── */

.hero {
  height: 100svh; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.045) 0%, transparent 65%);
  pointer-events: none;
}

.hero-logo {
  width: clamp(280px, 72vw, 680px);
  opacity: 0.95; position: relative; z-index: 1;
}

.hero-tagline {
  font-family: var(--font); font-size: 0.9rem; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.28em;
  text-transform: uppercase; margin-top: 2rem;
  position: relative; z-index: 1;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; z-index: 2;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-muted); }
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ─── CONTENT ────────────────────────────────── */

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

.content-section { max-width: 700px; margin: 0 auto; padding: 7rem 2rem 8rem; }
.content-section p {
  font-family: var(--font); font-size: 1.15rem; font-weight: 400;
  line-height: 1.85; color: var(--text); margin-bottom: 1.75rem;
}
.content-section p:last-of-type { margin-bottom: 0; }

.section-label {
  display: block; font-family: var(--font);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3rem;
}

/* ─── PAGE HEADER ───────────────────────────── */

.page-header {
  padding-top: calc(var(--nav-h) + 5.5rem);
  padding-bottom: 3.5rem;
  text-align: center;
  padding-left: 2rem; padding-right: 2rem;
}
.page-title {
  font-family: var(--font);
  font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); margin-bottom: 1.25rem;
}
.page-subtitle {
  font-family: var(--font); font-size: 1rem; font-weight: 300;
  letter-spacing: 0.08em; color: var(--text-dim); margin-top: 1.25rem;
}
.page-divider { width: 48px; height: 1px; background: var(--gold); margin: 0 auto; opacity: 0.55; }

/* ─── PULL QUOTE ────────────────────────────── */

.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 0.4rem 0 0.4rem 2rem; margin: 2.75rem 0;
  font-family: var(--font); font-size: 1.45rem; font-weight: 400;
  color: var(--text-dim); line-height: 1.6;
}

/* ─── SIGNATURE ─────────────────────────────── */

.signature {
  font-family: var(--font); font-size: 1.4rem; font-weight: 400;
  color: var(--gold); display: block; margin-top: 2.5rem; letter-spacing: 0.04em;
}

/* ─── BRAND NAME ────────────────────────────── */

.brand { font-weight: 700; }

/* ─── ARTISTS ───────────────────────────────── */

.artists-section { max-width: 1200px; margin: 0 auto; padding: 0 2rem 9rem; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border);
  border: 1.5px solid var(--border);
}

.artist-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-card);
  display: block; text-decoration: none; color: var(--text);
}

.artist-card-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.6s ease;
}
.artist-card:hover .artist-card-img { transform: scale(1.06); }

.artist-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2rem;
  transition: background 0.4s;
}
.artist-card:hover .artist-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.28) 60%, rgba(0,0,0,0.05) 100%);
}

/* for no-image cards the overlay IS the background */
.artist-card.no-image .artist-card-overlay {
  background: linear-gradient(145deg, #161616 0%, #0d0d0d 100%);
}
.artist-card.no-image:hover .artist-card-overlay {
  background: linear-gradient(145deg, #1c1c1c 0%, #111111 100%);
}

.artist-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.artist-card:hover::after { transform: scaleX(1); }

.artist-number {
  font-family: var(--font); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.35); margin-bottom: 0.4rem;
}
.artist-name {
  font-family: var(--font); font-size: 2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.1;
}
.artist-visit {
  font-family: var(--font); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  opacity: 0; transition: opacity 0.3s; margin-top: 0.6rem;
}
.artist-card:hover .artist-visit { opacity: 1; }

/* ─── CTA BUTTON ────────────────────────────── */

.cta-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; border: 1px solid var(--gold-dim);
  padding: 0.9rem 2rem; margin-top: 2.5rem;
  transition: all 0.3s; cursor: pointer; background: transparent;
}
.cta-btn:hover { background: rgba(201,168,76,0.07); border-color: var(--gold); }

/* ─── CONTACT ────────────────────────────────── */

.contact-meta { display: flex; gap: 5rem; margin-bottom: 4.5rem; flex-wrap: wrap; }
.contact-item label {
  display: block; font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.6rem; font-weight: 500;
}
.contact-item a, .contact-item span {
  font-family: var(--font); font-size: 1.65rem; color: var(--text);
  text-decoration: none; transition: color 0.2s; font-weight: 300;
}
.contact-item a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--font); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted); font-weight: 500;
}
.form-group input, .form-group textarea {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); padding: 0.9rem 1.15rem;
  font-family: var(--font); font-size: 1.05rem; font-weight: 400;
  outline: none; transition: border-color 0.25s; resize: vertical; width: 100%;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold-dim); }
.form-group textarea { min-height: 130px; }
.form-submit {
  align-self: flex-start; background: transparent;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--font); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.9rem 2.5rem; cursor: pointer; transition: all 0.3s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold); color: var(--bg); }

/* ─── ABOUT ──────────────────────────────────── */

.pdf-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; border: 1px solid var(--gold-dim);
  padding: 0.9rem 2rem; margin-top: 2.5rem; transition: all 0.3s;
}
.pdf-btn:hover { background: rgba(201,168,76,0.07); border-color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border); padding: 2.25rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-family: var(--font); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--text-muted); }
.footer-logo img { height: 22px; opacity: 0.3; display: block; }

/* ─── RESPONSIVE ─────────────────────────────── */

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

@media (max-width: 700px) {
  .site-nav { padding: 0 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg-nav); flex-direction: column; gap: 0;
    padding: 0.75rem 0 1rem; border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    transform: translateY(-110%); opacity: 0;
    transition: transform 0.32s ease, opacity 0.32s ease; pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li a { display: block; padding: 0.75rem 2rem; }
  .content-section { padding: 5rem 1.5rem 6rem; }
  .artists-section { padding: 0 1.5rem 6rem; }
  .site-footer { padding: 2rem 1.5rem; }
  .contact-meta { gap: 2.5rem; }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr; }
}
