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

:root {
  --black:      #080808;
  --deep:       #111111;
  --surface:    #181818;
  --white:      #F2F0EB;
  --muted:      #888880;
  --accent:     #E61C5D;
  --accent-dim: rgba(230, 28, 93, 0.12);
  --border:     rgba(242, 240, 235, 0.08);
  --font-main:  'Space Grotesk', sans-serif;
  --font-mono:  'Space Mono', monospace;
  --page-pad:   2.5rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.label-mono {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Nav ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--page-pad);
  transition: background 0.4s, padding 0.3s;
}

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

.nav-logo {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  border-radius: 2px;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #ff2471; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Footer ─────────────────────────────────────────── */
footer {
  padding: 2.5rem var(--page-pad);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-links { display: flex; gap: 1.75rem; }

.social-links a {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.social-links a:hover { color: var(--white); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(136,136,128,0.4);
}

/* ══════════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 4rem var(--page-pad);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /*
  ════════════════════════════════════════════════════
  ADD YOUR HERO IMAGE:
    background-image: url('/images/four-chord-11-blink-182/four-chord-11-blink-182-1.jpg');
    background-size: cover;
    background-position: center top;
  Then remove the gradient lines below.
  ════════════════════════════════════════════════════
  */
  background:
    linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.35) 50%, rgba(8,8,8,0.15) 100%),
    linear-gradient(135deg, #1a0a1e 0%, #0d0d0d 45%, #1c0808 75%, #080808 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero-name {
  font-size: clamp(3.8rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.hero-name span { display: block; }

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(242,240,235,0.5);
  margin-bottom: 2rem;
}

.hero-cta { }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.6;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, transparent, var(--muted));
}

/* Featured grid */
.featured {
  padding: 6rem var(--page-pad);
  background: var(--deep);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.2s;
}

.section-link:hover { opacity: 0.7; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.shoot-card {
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.shoot-card:hover { transform: translateY(-2px); }

.card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--surface);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.shoot-card:hover .card-image img { transform: scale(1.04); }

.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: rgba(255,255,255,0.15);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-meta {
  padding: 0.9rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.card-event {
  font-size: 0.78rem;
  color: var(--muted);
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* About strip */
.about-strip {
  padding: 6rem var(--page-pad);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
}

.about-strip-text .label-mono { margin-bottom: 1rem; }

.about-strip-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.about-strip-text p {
  color: rgba(242,240,235,0.62);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.about-strip-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-num em {
  font-style: normal;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════════════════
   DIRECTORY PAGE
══════════════════════════════════════════════════════ */

.directory-header {
  padding: 10rem var(--page-pad) 3rem;
  border-bottom: 1px solid var(--border);
}

.directory-header h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.directory-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.75rem;
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1.5rem var(--page-pad);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  background: var(--black);
  z-index: 10;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent-dim);
}

.directory { padding: 0 var(--page-pad) 6rem; }

.event-group {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.event-group-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.event-name {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.event-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-top: 0.3rem;
}

.event-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  white-space: nowrap;
  margin-top: 0.3rem;
}

.shoot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.shoot-card-sm {
  display: block;
  text-decoration: none;
}

.card-image-sm {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}

.card-image-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.shoot-card-sm:hover .card-image-sm img { transform: scale(1.06); }

.card-placeholder-sm {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  background: var(--surface);
}

.card-overlay-sm {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.shoot-card-sm:hover .card-overlay-sm { opacity: 1; }

.card-name-sm {
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ══════════════════════════════════════════════════════
   SHOOT PAGE
══════════════════════════════════════════════════════ */

.shoot-header {
  padding: 9rem var(--page-pad) 3rem;
  border-bottom: 1px solid var(--border);
}

.back-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--white); }

.shoot-cat-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.shoot-artist {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1rem;
}

.shoot-details {
  color: var(--muted);
  font-size: 0.9rem;
}

.shoot-details .sep { margin: 0 0.5rem; }

/* Gallery */
.shoot-gallery {
  padding: 3rem var(--page-pad);
  columns: 3 280px;
  column-gap: 0.6rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.6rem;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.03); }

/* Shoot empty state */
.shoot-empty {
  padding: 6rem var(--page-pad);
  text-align: center;
}

.shoot-empty .label-mono { margin-bottom: 0.75rem; }

.shoot-empty p { color: var(--muted); }

.shoot-nav {
  padding: 3rem var(--page-pad);
  border-top: 1px solid var(--border);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,5,5,0.97);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lb-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lb-inner img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}

.lb-caption {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}

.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.lb-close:hover { opacity: 1; }

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 1rem;
  line-height: 1;
}

.lb-prev:hover,
.lb-next:hover { opacity: 1; }

.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */

.about-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem var(--page-pad) 6rem;
}

.about-image .img-placeholder-block {
  aspect-ratio: 4/5;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
}

.about-content .label-mono { margin-bottom: 1rem; }

.about-content h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: rgba(242,240,235,0.65);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 1.25rem;
}

.about-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */

.contact-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 9rem var(--page-pad) 6rem;
}

.contact-header { margin-bottom: 3rem; }

.contact-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.contact-header p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-header a { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-field { display: flex; flex-direction: column; gap: 0.45rem; }

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(136,136,128,0.45); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: rgba(230,28,93,0.5); }

.form-field textarea { resize: vertical; min-height: 150px; }

.form-field select option { background: var(--surface); }

.form-submit { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.form-success {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════
   MAILING LIST / NOTIFY
══════════════════════════════════════════════════════ */

.notify-form { margin-top: 2rem; max-width: 480px; }
.notify-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.notify-row input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.notify-row input[type="email"]:focus { outline: 1px solid var(--accent); }
.notify-fine { margin-top: 0.75rem; font-size: 0.78rem; color: var(--muted); }
.notify-success { color: var(--accent); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; margin-top: 1rem; }

.mailing-list-section { margin-top: 5rem; padding-top: 4rem; border-top: 1px solid var(--border); }
.mailing-list-inner { max-width: 560px; }
.mailing-list-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.5rem 0 1rem; }
.mailing-list-inner p { color: var(--muted); margin-bottom: 1.5rem; }
.newsletter-form .notify-row { margin-top: 0; }

/* Footer newsletter */
.footer-newsletter {
  width: 100%;
  padding: 2.5rem var(--page-pad);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-newsletter-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}
.footer-newsletter-form { display: flex; gap: 0.5rem; flex: 1; max-width: 400px; }
.footer-newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.6rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.footer-newsletter-form input[type="email"]:focus { outline: 1px solid var(--accent); }
.footer-newsletter-form button {
  padding: 0.6rem 1.2rem;
  background: var(--text);
  color: var(--black);
  border: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.footer-newsletter-form button:hover { opacity: 0.75; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem var(--page-pad);
}
.hidden { display: none; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  :root { --page-pad: 1.5rem; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-scroll { display: none; }

  .featured-grid { grid-template-columns: 1fr 1fr; }

  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }

  .about-page {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 7rem;
  }

  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .shoot-gallery { columns: 2 180px; }

  .form-row { grid-template-columns: 1fr; }

  .event-group-header { flex-direction: column; align-items: flex-start; }

  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .shoot-gallery { columns: 1; }
  .shoot-grid { grid-template-columns: repeat(3, 1fr); }
}
