/* ============================================================
   ABD MEDIA PRODUCTIONS — style.css
   Brand: #C9EB55 acid green / #111 black / #fff white
   Font: Arial throughout
   ============================================================ */

:root {
  --acid: #C9EB55;
  --black: #0e0e0e;
  --black2: #161616;
  --black3: #1e1e1e;
  --white: #f5f5f2;
  --gray: #888;
  --gray2: #333;
  --font-display: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header,
.elementor-location-header,
header.entry-header,
#masthead {
  display: none !important;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 10px; height: 10px;
  background: var(--acid);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s var(--ease), width 0.2s var(--ease), height 0.2s var(--ease);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,235,85,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s var(--ease), width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
}
body:hover .cursor { opacity: 1; }

/* TYPOGRAPHY */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.0; letter-spacing: -0.02em; }
p { line-height: 1.7; }
a { color: inherit; text-decoration: none; }
.accent { color: var(--acid); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.0;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--acid);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: transform 0.2s var(--ease), background 0.2s;
  cursor: none;
}
.btn-primary:hover { transform: scale(1.03); background: #d6f262; }
.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  cursor: none;
}
.btn-ghost:hover { border-color: var(--acid); color: var(--acid); }

.btn-outline {
  display: inline-block;
  color: var(--acid);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.9rem 2rem;
  border: 1px solid var(--acid);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  cursor: none;
}
.btn-outline:hover { background: var(--acid); color: var(--black); }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background 0.3s, padding 0.3s;
}
#nav.scrolled {
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: baseline; gap: 0; }
.logo-abd {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}
.logo-dot { font-family: var(--font-display); font-size: 1.6rem; color: var(--acid); line-height: 1; font-weight: 800; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,242,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--acid) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  font-weight: 500 !important;
  font-family: var(--font-body);
}
.nav-cta:hover { background: #d6f262 !important; color: var(--black) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 0.3rem;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mm-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.mm-link:hover { color: var(--acid); }
.mm-cta { color: var(--acid); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-reel-placeholder {
  width: 100%; height: 100%;
  background: var(--black2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  /* SWAP THIS: add background-image: url('/wp-content/uploads/your-reel.gif'); background-size: cover; */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0.55) 0%,
    rgba(14,14,14,0.35) 40%,
    rgba(14,14,14,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-headline .line { overflow: hidden; }
.hero-headline .line span { display: block; }
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,245,242,0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,245,242,0.3);
  writing-mode: vertical-rl;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  background: var(--acid);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-track .dot { color: var(--black); font-size: 0.5rem; align-self: center; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   WORK
   ============================================================ */
#work {
  padding: 7rem 3rem;
}
.section-header {
  margin-bottom: 4rem;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gray2);
}
.work-item {
  background: var(--black);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.work-item--wide {
  grid-column: span 1;
}
.work-media {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--black2);
}
.work-item--wide .work-media {
  aspect-ratio: 4/5;
}
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s;
  filter: grayscale(20%);
}
.work-item:hover .work-media img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.work-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--gray2);
}
.work-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--acid);
  flex-shrink: 0;
}
.work-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.work-info p {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 300;
}
.work-tag {
  margin-left: auto;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--gray2);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  flex-shrink: 0;
}
.work-placeholder {
  background: var(--black2);
  aspect-ratio: 16/9;
}
.work-placeholder-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 200px;
}
.plus {
  font-size: 2rem;
  color: var(--gray2);
  font-weight: 300;
}
.work-placeholder p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray2);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: var(--black2);
  padding: 7rem 3rem;
  border-top: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
}
.services-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.services-left { position: sticky; top: 8rem; }
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray2);
  transition: background 0.2s;
}
.service-item:first-child { border-top: 1px solid var(--gray2); }
.service-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--acid);
  flex-shrink: 0;
  padding-top: 0.25rem;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.service-item:hover .service-body h3 { color: var(--acid); }
.service-body p {
  font-size: 0.9rem;
  color: rgba(245,245,242,0.55);
  font-weight: 300;
  max-width: 460px;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 60vh;
}
.about-accent-block {
  background: var(--acid);
  display: flex;
  align-items: flex-end;
  padding: 4rem 3rem;
}
.about-accent-block h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--black);
  line-height: 0.95;
}
.about-accent-block h2 span {
  display: block;
  font-size: clamp(4rem, 8vw, 7rem);
}
.about-body {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black3);
}
.about-statement {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}
.about-sub {
  font-size: 0.9rem;
  color: rgba(245,245,242,0.55);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 3rem;
}
.about-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--gray2);
  padding-top: 2rem;
}
.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--acid);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   BOOKING
   ============================================================ */
#book {
  padding: 7rem 3rem;
  background: var(--black);
}
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.book-left { position: sticky; top: 8rem; }
.book-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.book-sub {
  font-size: 0.9rem;
  color: rgba(245,245,242,0.55);
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* 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 select,
.contact-form textarea {
  width: 100%;
  background: var(--black2);
  border: 1px solid var(--gray2);
  border-radius: 2px;
  padding: 0.9rem 1.1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  cursor: none;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245,245,242,0.3); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--acid); }
.contact-form select { color: rgba(245,245,242,0.6); }
.contact-form select option { background: var(--black2); color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding: 3rem 3rem 2rem;
  border-top: 1px solid var(--gray2);
  background: var(--black);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray2);
}
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(245,245,242,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--acid); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(245,245,242,0.25);
  letter-spacing: 0.05em;
}

/* ============================================================
   ANIMATIONS — entrance
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  #nav { padding: 1.2rem 1.5rem; }
  #nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  #hero { padding: 0 1.5rem 4rem; }
  .hero-scroll-hint { display: none; }

  #work { padding: 5rem 1.5rem; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 1.5px; }
  .work-item--wide { grid-column: span 1; }

  #services { padding: 5rem 1.5rem; }
  .services-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-left { position: static; }

  #about { grid-template-columns: 1fr; }
  .about-accent-block { padding: 3rem 1.5rem; }
  .about-body { padding: 3rem 1.5rem; }
  .about-stats { gap: 2rem; }

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

  #footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(2.8rem, 12vw, 4rem); }
  .about-stats { flex-direction: column; gap: 1.5rem; }
}
