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

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

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: #0a0a0a;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title.dark {
  color: #222;
}

.section-eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.section-eyebrow.dark {
  color: rgba(0, 0, 0, 0.4);
}

.spaced-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
}

.subsection-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.title-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 1rem auto 3rem;
}

.title-divider.dark {
  background: rgba(0, 0, 0, 0.3);
}

.title-divider.left {
  margin-left: 0;
  margin-right: auto;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: #0a0a0a;
}

.section-light {
  background: #fff;
  color: #222;
}

.section-accent {
  background: #c0392b;
  color: #fff;
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.btn-solid {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 48px;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
}

.btn-solid:hover {
  background: #fff;
  color: #0a0a0a;
}

.btn-sm {
  padding: 10px 28px;
  font-size: 0.7rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.4em;
  color: #fff;
}

.logo-img {
  height: 45px;
  width: auto;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.logo-img:hover {
  filter: brightness(1.3);
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #fff;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0a0a 0%, #2c1010 30%, #0a0a0a 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 4rem;
  letter-spacing: 0.5em;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.5em;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-btn {
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
}

/* ========================================
   ABOUT
   ======================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content.reversed {
  direction: rtl;
}

.about-content.reversed > * {
  direction: ltr;
}

.about-text .lead-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.about-text p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: 0.95rem;
}

.about-quote {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ========================================
   PHOTO BREAK SECTIONS (Ken Burns Slideshows)
   ======================================== */
.photo-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.photo-break-short {
  height: 40vh;
  min-height: 280px;
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%; /* bias toward top to show faces, not chests */
  will-change: transform;
}

/* Ken Burns Animation Variants - infinite smooth loops */
.slide.active.kenburns-zoom-in img {
  animation: kbZoomIn 12s ease-in-out infinite alternate;
}

.slide.active.kenburns-zoom-out img {
  animation: kbZoomOut 12s ease-in-out infinite alternate;
}

.slide.active.kenburns-pan-right img {
  animation: kbPanRight 12s ease-in-out infinite alternate;
}

.slide.active.kenburns-pan-left img {
  animation: kbPanLeft 12s ease-in-out infinite alternate;
}

@keyframes kbZoomIn {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.12); }
}

@keyframes kbZoomOut {
  0% { transform: scale(1.12); }
  100% { transform: scale(1.02); }
}

@keyframes kbPanRight {
  0% { transform: scale(1.08) translateX(-2%); }
  100% { transform: scale(1.08) translateX(2%); }
}

@keyframes kbPanLeft {
  0% { transform: scale(1.08) translateX(2%); }
  100% { transform: scale(1.08) translateX(-2%); }
}

.photo-break-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.photo-break-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
}

/* Legacy video section (hero only) */
.video-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a0a 0%, #2c1010 50%, #0a0a0a 100%);
}

.section-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

/* ========================================
   SERVICES GRID (3 cards)
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  text-align: center;
}

.service-image {
  margin-bottom: 2rem;
}

.service-image .image-placeholder {
  min-height: 250px;
  border-radius: 4px;
  overflow: hidden;
}

/* Illustration showcase (standalone section) */
.illustration-section {
  padding: 40px 0;
}

.illustration-showcase {
  max-width: 400px;
  margin: 0 auto;
}

.illustration-container {
  background: transparent !important;
}

.illustration-container::after {
  display: none;
}

/* ========================================
   TALENT / SERVICES SHOWCASE (legacy)
   ======================================== */
.talent-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.talent-info {
  text-align: center;
}

.talent-heading {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.talent-info p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-category {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-name {
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Pricing highlight (core package) */
.pricing-highlight {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.pricing-main-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.pricing-duration {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-main-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.8;
}

.pricing-main-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  min-height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
}

/* ========================================
   CLIENTS
   ======================================== */
.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.client-logo {
  flex: 0 0 auto;
}

.logo-placeholder {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  position: relative;
}

.logo-placeholder:hover {
  opacity: 1;
}

.logo-placeholder.fallback::after {
  content: attr(data-text);
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.logo-placeholder img {
  max-height: 80px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-placeholder:hover img {
  filter: grayscale(0%);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-photo {
  margin-bottom: 1.5rem;
}

.contact-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  min-height: 140px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}


/* Center illustration - transparent bg to blend with site */
#eyeTracker {
  background: transparent !important;
}
#eyeTracker::after {
  display: none !important;
}
/* Avatar at bottom keeps black bg */
#avatarTracker {
  background: #000 !important;
}
#avatarTracker::after {
  display: none !important;
}

/* 3-layer eye tracking */
.eye-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.eyeball {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  /* JS sets width, height, top, left, transform */
  transition: transform 0.06s ease-out;
}

/* Face image on top as mask */
#eyeTracker img {
  z-index: 4;
}

/* Smile overlay - must be above the transparent face mask */
#eyeTracker .smile-overlay {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  object-fit: contain;
  z-index: 5 !important;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.contact-link svg {
  flex-shrink: 0;
  margin-top: 2px;
}

a.contact-link:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ========================================
   INQUIRY FORM (shared)
   ======================================== */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem;
  resize: vertical;
  min-height: 120px;
}

.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.inquiry-form .btn-solid {
  align-self: flex-end;
  margin-top: 0.5rem;
}

/* ========================================
   GALLERY TILES
   ======================================== */
.gallery-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.tile {
  aspect-ratio: 1;
  overflow: hidden;
}

.tile .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: unset;
}

.tile .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tile:hover .image-placeholder img {
  transform: scale(1.05);
}

/* ========================================
   IMAGE PLACEHOLDERS (when no images)
   ======================================== */
.image-placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.image-placeholder.tall {
  min-height: 500px;
}

.image-placeholder::after {
  content: attr(data-text);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}

.image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0a0a0a;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.7;
}

.footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  font-weight: 300;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .talent-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .talent-center-image {
    order: -1;
  }

  .image-placeholder.tall {
    min-height: 350px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }

  .hero-title {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content.reversed {
    direction: ltr;
  }

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

  .spaced-title {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .talent-heading {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .clients-logos {
    gap: 2rem;
  }

  .logo-placeholder {
    width: 120px;
    height: 70px;
  }

  .photo-break-content h2 {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .container {
    padding: 0 1.25rem;
  }

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

  .contact-avatar {
    width: 110px;
    height: 110px;
    min-height: 110px;
  }
}
