/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:  #FF6B00;
  --orange2: #FF8C00;
  --black:   #0D0D0D;
  --dark:    #111111;
  --darker:  #0A0A0A;
  --white:   #F2F0EB;
  --gray:    rgba(242,240,235,0.55);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Grain texture overlay applied to sections */
.hero-texture,
.about-texture,
.contact-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,0,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}

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

.nav-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.nav-cta:hover { background: var(--orange2); transform: scale(1.04); }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,107,0,0.2);
  flex-direction: column;
  gap: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-menu ul li a:hover { color: var(--orange); }

.mobile-menu .btn-primary {
  width: 100%;
  text-align: center;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: var(--darker);
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  background: url('assets/crazy-1.jpg') center center / cover no-repeat;
  filter: grayscale(25%) contrast(1.15) brightness(0.85);
  transform: scale(1.03);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.45) 0%, rgba(13,13,13,0.1) 35%, rgba(13,13,13,0.55) 80%, var(--darker) 100%),
    linear-gradient(to right, rgba(13,13,13,0.35) 0%, transparent 50%);
  z-index: 1;
}

/* Foreground cutout — Photoshop-cut PNG of subject,
   sits above the text so body breaks through the typography */
.hero-fg-photo {
  position: absolute;
  inset: 0;
  background: url('assets/crazy-1-cutout.png') center center / cover no-repeat;
  z-index: 6;
  filter: grayscale(25%) contrast(1.15) brightness(0.85);
  transform: scale(1.03);
  pointer-events: none;
}

/* Single arm cutout — topmost layer, breaks through text and cutout */
.hero-arm {
  position: absolute;
  inset: 0;
  background: url('assets/crazy-1-cutout-arm.png') center center / cover no-repeat;
  z-index: 8;
  filter: grayscale(25%) contrast(1.15) brightness(0.85);
  transform: scale(1.03);
  pointer-events: none;
}

/* Big bleed title behind everything */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  flex: 1;
  width: 100%;
  justify-content: center;
}

/* Tagline + buttons — above cutout and arm */
.hero-bottom {
  position: absolute;
  bottom: 4rem;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 0 1.5rem;
}

.hero-bleed-title {
  font-family: var(--font-display);
  font-size: clamp(16vw, 24vw, 32vw);
  color: transparent;
  -webkit-text-stroke: 3px var(--orange);
  white-space: nowrap;
  letter-spacing: -0.02em;
  line-height: 0.9;
  mix-blend-mode: screen;
  margin-bottom: 0.15em;
  animation: fadeUp 0.7s ease both;
  position: relative;
  z-index: 4;
  transform: perspective(900px) rotateX(4deg);
  transform-origin: center bottom;
  text-shadow:
    0 18px 40px rgba(255, 107, 0, 0.35),
    0 30px 70px rgba(255, 107, 0, 0.15),
    0 -6px 20px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(255, 107, 0, 0.12);
}

/* Desktop: spans inline, reads as one word */
.title-zeb, .title-the, .title-dj { display: inline; }

/* ── Glitch animation ── */
@keyframes glitch {
  0%,  88%, 100% { text-shadow: 0 18px 40px rgba(255,107,0,0.35), 0 0 60px rgba(255,107,0,0.12); }
  89% { text-shadow: -4px 0 rgba(255,0,60,0.9), 4px 0 rgba(0,180,255,0.9), 0 0 60px rgba(255,107,0,0.3); }
  90% { text-shadow:  4px 0 rgba(255,0,60,0.9), -4px 0 rgba(0,180,255,0.9), 0 0 60px rgba(255,107,0,0.3); }
  91% { text-shadow: -3px 0 rgba(255,0,60,0.7),  3px 0 rgba(0,180,255,0.7), 0 0 60px rgba(255,107,0,0.2); }
  92% { text-shadow: 0 18px 40px rgba(255,107,0,0.35), 0 0 60px rgba(255,107,0,0.12); }
}

.hero-pre {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  letter-spacing: 0.35em;
  color: var(--orange);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  position: relative;
  z-index: 10;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--orange);
  padding: 0.7rem 0;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  /* width must be auto so JS-cloned content expands naturally */
  width: max-content;
}

.ticker-track .sep { color: rgba(255,255,255,0.5); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 1rem 2.8rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
  background: var(--orange2);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(255,107,0,0.35);
}

.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 1rem 2.8rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(255,107,0,0.25);
}

/* ===== ABOUT ===== */
#about {
  position: relative;
  padding: 8rem 3rem;
  background: var(--dark);
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-photo-col { position: relative; }

.about-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: url('assets/ZEB-6.jpg') center top / cover no-repeat;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,107,0,0.2);
}

.about-photo-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.4) 0%, transparent 50%);
}

.about-photo-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60%;
  height: 60%;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  pointer-events: none;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--orange);
  margin-bottom: 0.8rem;
  display: block;
}
.section-label.centered { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.section-title em {
  font-style: normal;
  color: var(--orange);
}

.section-title.centered { text-align: center; }

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.about-more {
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.45s ease;
  max-height: 600px; /* always open on desktop */
  opacity: 1;
}

.about-more-btn {
  display: none; /* hidden on desktop */
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.tag {
  border: 1.5px solid rgba(255,107,0,0.35);
  color: var(--orange);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: all 0.2s;
}

.tag:hover {
  background: rgba(255,107,0,0.1);
  border-color: var(--orange);
}

/* ===== CREDITS ===== */
#credits {
  padding: 8rem 3rem;
  background: var(--darker);
}

.credits-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,107,0,0.12);
  margin-top: 4rem;
  border: 1px solid rgba(255,107,0,0.12);
}

.credit-item {
  background: var(--darker);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s;
}

.credit-item:hover { background: rgba(255,107,0,0.05); }

.credit-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.credit-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.credit-desc {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* ===== SERVICES ===== */
#services {
  padding: 8rem 3rem;
  background: var(--dark);
}

.services-inner { max-width: 1100px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-card {
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 1.8rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  background: rgba(255,255,255,0.015);
}

.service-card:hover {
  border-color: rgba(255,107,0,0.5);
  transform: translateY(-4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 0.3s;
}

.service-card:hover::before { height: 100%; }

.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(255,107,0,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.service-card:hover .service-num {
  color: var(--orange);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
}

/* ===== SPRAY PAINT BREAK ===== */
.spray-section {
  padding: 5rem 3rem;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.spray-section::before,
.spray-section::after {
  content: 'ZEBTHEDJ';
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  color: rgba(255,107,0,0.04);
  position: absolute;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.spray-section::before { top: 10%; left: -2%; }
.spray-section::after  { bottom: 10%; right: -2%; }

.spray-circle {
  position: relative;
  width: min(420px, 85vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Spray paint splatter via shadow */
  box-shadow:
    0 0 0 8px rgba(255,107,0,0.15),
    0 0 0 20px rgba(255,107,0,0.08),
    0 0 0 40px rgba(255,107,0,0.04),
    12px -18px 0 -12px rgba(255,107,0,0.5),
    -20px 15px 0 -14px rgba(255,107,0,0.4),
    30px 20px 0 -16px rgba(255,107,0,0.3),
    -15px -25px 0 -13px rgba(255,107,0,0.35),
    25px -10px 0 -15px rgba(255,107,0,0.3),
    -30px 5px 0 -17px rgba(255,107,0,0.25),
    18px 30px 0 -14px rgba(255,107,0,0.3);
  animation: sprayPulse 4s ease-in-out infinite;
}

@keyframes sprayPulse {
  0%, 100% { box-shadow:
    0 0 0 8px rgba(255,107,0,0.15),
    0 0 0 20px rgba(255,107,0,0.08),
    0 0 0 40px rgba(255,107,0,0.04),
    12px -18px 0 -12px rgba(255,107,0,0.5),
    -20px 15px 0 -14px rgba(255,107,0,0.4),
    30px 20px 0 -16px rgba(255,107,0,0.3),
    -15px -25px 0 -13px rgba(255,107,0,0.35),
    25px -10px 0 -15px rgba(255,107,0,0.3),
    -30px 5px 0 -17px rgba(255,107,0,0.25),
    18px 30px 0 -14px rgba(255,107,0,0.3);
  }
  50% { box-shadow:
    0 0 0 10px rgba(255,107,0,0.18),
    0 0 0 26px rgba(255,107,0,0.1),
    0 0 0 50px rgba(255,107,0,0.05),
    14px -22px 0 -10px rgba(255,107,0,0.55),
    -22px 18px 0 -12px rgba(255,107,0,0.45),
    34px 24px 0 -14px rgba(255,107,0,0.35),
    -18px -28px 0 -11px rgba(255,107,0,0.4),
    28px -12px 0 -13px rgba(255,107,0,0.35),
    -34px 8px 0 -15px rgba(255,107,0,0.3),
    20px 34px 0 -12px rgba(255,107,0,0.35);
  }
}

.spray-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
}

.spray-line1,
.spray-line2,
.spray-line3 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
}

.spray-line1 { font-size: clamp(1.1rem, 3.5vw, 2.2rem); }
.spray-line2 { font-size: clamp(1.1rem, 3.5vw, 2.2rem); }
.spray-line3 { font-size: clamp(1.4rem, 4.5vw, 3rem); color: var(--darker); }

/* ===== SOCIAL ===== */
#social {
  padding: 7rem 3rem;
  background: var(--dark);
}

.social-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.12);
}

.social-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1.8rem;
  background: var(--dark);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}

.social-row:hover {
  background: rgba(255,107,0,0.08);
  color: var(--orange);
}

.social-icon-wrap {
  color: var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  flex: 1;
}

.social-handle {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  opacity: 0.45;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

.social-arrow {
  font-size: 1.2rem;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
}

.social-row:hover .social-arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--orange);
}

/* ===== CONTACT ===== */
#contact {
  position: relative;
  padding: 8rem 3rem;
  background: var(--darker);
  overflow: hidden;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
  margin-top: -1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-email {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.contact-email:hover { text-decoration: underline; }

.contact-stats {
  display: flex;
  gap: 2.5rem;
}

.cstat { display: flex; flex-direction: column; }

.cstat-n {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
}

.cstat-l {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.contact-form input[type="date"] { color-scheme: dark; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: rgba(255,107,0,0.04);
}

.contact-form textarea { resize: vertical; min-height: 130px; }

.form-success {
  font-size: 0.85rem;
  color: #00e87a;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  padding: 4rem 3rem 3rem;
  border-top: 1px solid rgba(255,107,0,0.15);
  overflow: hidden;
  text-align: center;
}

.footer-bleed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8vw, 14vw, 16vw);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,107,0,0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.footer-inner { position: relative; z-index: 1; }

.footer-email a {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}

.footer-email a:hover { opacity: 0.75; }

.footer-copy {
  font-size: 0.72rem;
  opacity: 0.3;
  letter-spacing: 0.12em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  #about { padding: 5rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-col { max-width: 340px; }

  #credits { padding: 5rem 1.5rem; }
  .credits-grid { grid-template-columns: repeat(2, 1fr); }

  #services { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  #social { padding: 5rem 1.5rem; }
  .social-inner { grid-template-columns: 1fr; gap: 3rem; }

  #contact { padding: 5rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .spray-section { padding: 4rem 1.5rem; }
}

@media (max-width: 768px) {
  /* ── Hero mobile layout ── */
  #hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* All photo layers share the same crop so they stay aligned */
  .hero-bg-photo,
  .hero-fg-photo,
  .hero-arm {
    background-position: 56% 30%;
  }

  /* Content: tagline + buttons sit at the bottom, title is absolute */
  .hero-content {
    justify-content: flex-end !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem 1rem 3rem !important;
    flex: 1;
    position: relative;
  }

  .hero-bottom {
    bottom: 2.5rem;
    gap: 1.2rem;
  }

  /* Just ZEB — massive, centered, lets the photo breathe */
  .hero-bleed-title {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    text-shadow: none;
    margin-bottom: 0;
    mix-blend-mode: screen;
    animation: glitch 5s infinite;
  }

  .title-zeb {
    display: block;
    font-size: 75vw;
    -webkit-text-stroke: 3px var(--orange);
    color: transparent;
    line-height: 1;
    text-align: center;
    text-shadow:
      0 0 20px rgba(255,107,0,0.08),
      0 8px 16px rgba(255,107,0,0.06);
  }

  /* Hide on mobile */
  .title-the,
  .title-dj {
    display: none;
  }

  /* Bio show more */
  .about-more {
    max-height: 0;
    opacity: 0;
  }

  .about-more.open {
    max-height: 600px;
    opacity: 1;
  }

  .about-more-btn {
    display: inline-block;
    background: none;
    border: 1.5px solid rgba(255,107,0,0.4);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.2em;
    padding: 0.5rem 1.2rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .about-more-btn:hover {
    background: rgba(255,107,0,0.08);
    border-color: var(--orange);
  }

  .hero-pre {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .credits-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .spray-section { display: none; }
  .service-num { color: var(--orange); }
  .contact-stats { gap: 1.5rem; }
}
