@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;600&family=Space+Mono:wght@400;700&family=Oswald:wght@300;400;500;600&family=Raleway:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --black: #000;
  --white: #fff;
  --off-white: #e2e2e2;
  --muted: #999;
  --border: #1a1a1a;
  --border-light: #2a2a2a;
  --gold: #b8965a;

  --f-headline: 'Cormorant SC', serif;
  --f-mono: 'Space Mono', monospace;
  --f-heading: 'Oswald', sans-serif;
  --f-body: 'Raleway', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   SITE NAV (inner pages)
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 52px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}

.site-nav .nav-home {
  font-family: var(--f-headline);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.3em;
  transition: opacity 0.2s;
}

.site-nav .nav-home:hover { opacity: 0.65; }

.site-nav .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.site-nav .nav-links a {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  opacity: 1;
}

.site-nav .nav-links a.booking-link {
  opacity: 0.8;
  color: var(--gold);
}

.site-nav .nav-links a.booking-link:hover { opacity: 1; }

/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */

.photo-frame {
  background: #0c0c0c;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.photo-frame img,
.photo-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.3em;
  color: #1e1e1e;
  text-transform: uppercase;
  user-select: none;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.section-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.thin-line {
  width: 40px;
  height: 1px;
  background: var(--white);
  margin: 20px 0;
}

/* ============================================================
   HOME PAGE
   ============================================================ */

.home-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-hero {
  padding: 80px 52px 40px;
  border-bottom: 1px solid var(--border);
}

.home-hero h1 {
  font-family: var(--f-headline);
  font-size: clamp(110px, 19vw, 260px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 0.9;
  color: var(--white);
}

.home-hero .tagline {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 22px;
}

.home-hero .tagline-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s, opacity 0.2s;
}

.home-hero .tagline-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
  opacity: 0.85;
}

.home-profile {
  display: grid;
  grid-template-columns: 42% 1fr;
  flex: 1;
}

.home-photo {
  aspect-ratio: 3/4;
  border-right: 1px solid var(--border);
}

.home-photo .photo-frame {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

.home-photo .photo-frame img {
  filter: grayscale(100%) contrast(1.05);
}

.home-content {
  padding: 64px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-bio {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--off-white);
  max-width: 520px;
}

.home-bio p { margin-bottom: 16px; }

.home-nav {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-nav a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, padding-left 0.2s;
}

.home-nav a:last-child { border-bottom: 1px solid var(--border); }

.home-nav a:hover {
  color: var(--off-white);
  padding-left: 8px;
}

.home-nav a .arrow {
  font-size: 14px;
  opacity: 0.3;
  transition: opacity 0.2s, transform 0.2s;
}

.home-nav a:hover .arrow {
  opacity: 1;
  transform: translateX(4px);
}

.home-nav a.booking-cta {
  color: var(--gold);
  border-color: #2a2218;
}

.home-footer {
  border-top: 1px solid var(--border);
  padding: 18px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-footer span {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.manager-link {
  color: var(--off-white);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.manager-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ============================================================
   DJ PAGE
   ============================================================ */

.dj-video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.dj-video-hero iframe,
.dj-video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  object-fit: cover;
}

.dj-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 60px;
  z-index: 2;
}

.dj-video-overlay h1 {
  font-family: var(--f-headline);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 300;
  letter-spacing: 0.2em;
}

.scroll-cue {
  margin-top: 28px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-cue .scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.dj-section {
  padding: 100px 52px;
  border-bottom: 1px solid var(--border);
}

.dj-section.tight { padding: 80px 52px; }

.dj-section-title {
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 48px;
}

.dj-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.dj-about-text {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--off-white);
}

.dj-about-text p { margin-bottom: 20px; }

.genres-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.genres-list li {
  font-family: var(--f-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  transition: color 0.2s, padding-left 0.2s;
}

.genres-list li:hover {
  color: var(--off-white);
  padding-left: 6px;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.country-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--f-heading);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.country-item:nth-last-child(-n+3) { border-bottom: none; }

/* calendar */
.calendar-section { padding: 100px 52px; border-bottom: 1px solid var(--border); }

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.calendar-table th {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
  text-align: left;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--border-light);
}

.calendar-table td {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--off-white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.calendar-table td.date-col {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #ccc;
  width: 140px;
}

.calendar-table td.venue-col {
  font-family: var(--f-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-table td.city-col { color: #bbb; }

.no-shows {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #aaa;
  text-transform: uppercase;
  padding: 44px 0;
  text-align: center;
  border: 1px solid var(--border);
}

/* mixes */
.mixes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mix-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
  cursor: pointer;
}

.mix-item:first-child { border-top: 1px solid var(--border); }

.mix-item:hover { padding-left: 8px; }

.mix-title {
  font-family: var(--f-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mix-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #aaa;
  text-transform: uppercase;
}

.mix-arrow {
  font-size: 18px;
  opacity: 0.25;
  transition: opacity 0.2s, transform 0.2s;
}

.mix-item:hover .mix-arrow { opacity: 1; transform: translateX(4px); }

/* DJ carousel — crossfade */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.carousel-track {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.carousel-slide .photo-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.carousel-slide .photo-frame img,
.carousel-slide .photo-frame video {
  object-fit: contain;
  background: #000;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
}

.carousel-btn {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: border-color 0.2s, color 0.2s;
}

.carousel-btn:hover {
  border-color: var(--white);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-light);
  transition: background 0.2s;
}

.carousel-dot.active { background: var(--white); }

/* ============================================================
   MODEL PAGE
   ============================================================ */

.model-page-header {
  padding: 140px 52px 80px;
  border-bottom: 1px solid var(--border);
}

.model-page-header h1 {
  font-family: var(--f-headline);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 300;
  letter-spacing: 0.18em;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 3px;
  background: #0a0a0a;
}

.model-grid-item {
  aspect-ratio: 2/3;
  background: #0c0c0c;
  position: relative;
  overflow: hidden;
}

.model-grid-item .photo-frame {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

.gigs-section {
  padding: 100px 52px;
  border-top: 1px solid var(--border);
}

.gigs-section h2 {
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 48px;
}

.gig-list {
  display: flex;
  flex-direction: column;
}

.gig-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  gap: 40px;
}

.gig-item:first-child { border-top: 1px solid var(--border); }

.gig-year {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.gig-name {
  font-family: var(--f-heading);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gig-type {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   BIO PAGE
   ============================================================ */

.bio-page-header {
  padding: 140px 52px 80px;
  border-bottom: 1px solid var(--border);
}

.bio-page-header h1 {
  font-family: var(--f-headline);
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 300;
  letter-spacing: 0.18em;
}

.bio-body {
  max-width: 760px;
  padding: 80px 52px 100px;
}

.bio-body p {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--off-white);
  margin-bottom: 28px;
}

.bio-body p:last-child { margin-bottom: 0; }

.bio-socials {
  border-top: 1px solid var(--border);
  padding: 60px 52px 80px;
}

.bio-socials .section-label {
  margin-bottom: 36px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.social-link:hover { opacity: 1; }

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.social-link .social-handle {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */

.booking-page-header {
  padding: 140px 52px 80px;
  border-bottom: 1px solid var(--border);
}

.booking-page-header h1 {
  font-family: var(--f-headline);
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 300;
  letter-spacing: 0.18em;
}

.booking-page-header p {
  margin-top: 20px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 0.04em;
  max-width: 520px;
  line-height: 1.75;
}

.booking-form-wrap {
  padding: 80px 52px 100px;
  max-width: 680px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #999;
}

.form-input,
.form-select,
.form-textarea {
  background: #111;
  border: 1px solid #3a3a3a;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option { background: #1a1a1a; color: var(--white); }

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--white);
  background: #161616;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #888;
  font-style: normal;
  opacity: 1;
}

.form-submit {
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 48px;
  margin-top: 12px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  width: 100%;
}

.form-submit:hover {
  background: var(--off-white);
}

.booking-contact {
  border-top: 1px solid var(--border);
  padding: 48px 52px 60px;
}

.booking-contact .section-label { margin-bottom: 20px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details a,
.contact-details span {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.contact-details a:hover { color: var(--white); }

/* ============================================================
   UTILITIES
   ============================================================ */

@media (max-width: 900px) {
  .site-nav { padding: 18px 24px; }
  .site-nav .nav-links { gap: 20px; }

  .home-hero { padding: 60px 24px 32px; }
  .home-profile { grid-template-columns: 1fr; }
  .home-photo { aspect-ratio: 1/1; border-right: none; border-bottom: 1px solid var(--border); }
  .home-content { padding: 40px 24px 40px; }
  .home-footer { padding: 16px 24px; }

  .dj-section, .dj-section.tight { padding: 60px 24px; }
  .dj-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-section { padding: 60px 24px; }

  .model-page-header { padding: 100px 24px 60px; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .gigs-section { padding: 60px 24px; }
  .gig-item { grid-template-columns: 100px 1fr; }
  .gig-type { display: none; }

  .bio-page-header { padding: 100px 24px 60px; }
  .bio-body { padding: 60px 24px 80px; }
  .bio-socials { padding: 40px 24px 60px; }

  .booking-page-header { padding: 100px 24px 60px; }
  .booking-form-wrap { padding: 60px 24px 80px; }
  .booking-contact { padding: 40px 24px 60px; }
  .form-row { grid-template-columns: 1fr; }
}
