/* ============================================
   HOUSE OF MOTION FILMS — Design System
   Bright, Artistic, Cinematic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600&family=Caveat:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Primary Palette — Warm, Bright, Cinematic */
  --gold:        #D4A853;
  --gold-light:  #E8C97A;
  --gold-dark:   #B8892F;
  --cream:       #FFF8ED;
  --cream-warm:  #FDF1DE;
  --ivory:       #FFFDF7;
  --charcoal:    #1A1A1A;
  --graphite:    #2D2D2D;
  --slate:       #4A4A4A;
  --soft-black:  #0D0D0D;

  /* Accent Colors */
  --coral:       #E88565;
  --blush:       #F2C4B6;
  --sage:        #8FA38B;
  --dusty-rose:  #C9918A;
  --amber:       #E8A838;
  --warm-white:  #FAF6F0;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-script:  'Caveat', cursive;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --content-max: 1400px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ── Smooth Scroll Offset ── */
section[id] {
  scroll-margin-top: 80px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--soft-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 60%;
  height: 100%;
  background: var(--gold);
  animation: loading 1.2s var(--ease-smooth) infinite;
}

@keyframes loading {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-brand-tagline {
  font-family: var(--font-script);
  font-size: 0.9rem;
  color: var(--gold-light);
  opacity: 0.8;
  letter-spacing: 0.05em;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover {
  color: var(--gold);
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--soft-black) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease-smooth) infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.15) 40%,
    rgba(13, 13, 13, 0.5) 80%,
    rgba(13, 13, 13, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 24px;
  background: rgba(13, 13, 13, 0.65);
  border: 1px solid rgba(212, 168, 83, 0.45);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-eyebrow .accent {
  color: var(--gold);
  font-size: 0.8rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero-title span {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 5px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 248, 237, 0.8);
  font-weight: 300;
  max-width: 600px;
  margin: 20px auto 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--soft-black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 168, 83, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 248, 237, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 83, 0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 248, 237, 0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ============================================
   SECTION TITLES (Reusable)
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
}

.section-title.light {
  color: var(--cream);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 600px;
  margin: 16px auto 0;
  font-weight: 300;
}

.section-subtitle.light {
  color: rgba(255, 248, 237, 0.7);
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about {
  padding: var(--section-pad) 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'HOM';
  position: absolute;
  top: -40px;
  right: -30px;
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 800;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
}

.about-container {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--gold);
  border-radius: 16px;
  z-index: -1;
}

.about-text h3 {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  margin-top: 4px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-pad) 24px;
  background: var(--soft-black);
  position: relative;
  overflow: hidden;
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  group: true;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-card:hover .service-card-img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.9) 0%,
    rgba(13, 13, 13, 0.3) 50%,
    rgba(13, 13, 13, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 28px;
  transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.95) 0%,
    rgba(13, 13, 13, 0.5) 50%,
    rgba(13, 13, 13, 0.2) 100%
  );
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover .service-card-icon {
  transform: translateY(-4px);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255, 248, 237, 0.65);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover p {
  max-height: 100px;
  opacity: 1;
}

.service-card-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out) 0.1s;
}

.service-card:hover .service-card-tag {
  opacity: 1;
  transform: translateY(0);
}

/* ── Services Bottom Social Media Hub ── */
.services-social-hub {
  max-width: var(--content-max);
  margin: 70px auto 0;
  padding: 44px 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(212, 168, 83, 0.06) 100%);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.services-social-hub::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-social-hub-left {
  max-width: 480px;
  z-index: 1;
}

.social-hub-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.social-hub-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 10px;
}

.social-hub-desc {
  font-size: 0.95rem;
  color: rgba(255, 248, 237, 0.7);
  line-height: 1.6;
}

.services-social-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 1;
}

.social-channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: rgba(26, 26, 26, 0.7);
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 16px;
  text-decoration: none;
  color: var(--cream);
  transition: all 0.35s var(--ease-out);
  min-width: 200px;
  position: relative;
}

.social-channel-card:hover {
  background: rgba(212, 168, 83, 0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(212, 168, 83, 0.2);
}

.social-channel-icon {
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.35s var(--ease-out);
}

.social-channel-card:hover .social-channel-icon {
  transform: scale(1.15) rotate(-5deg);
}

.social-channel-info {
  display: flex;
  flex-direction: column;
}

.social-channel-platform {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold);
}

.social-channel-handle {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
}

.social-channel-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: rgba(255, 248, 237, 0.4);
  transition: all 0.3s var(--ease-out);
}

.social-channel-card:hover .social-channel-arrow {
  color: var(--gold);
  transform: translate(3px, -3px);
}

/* ============================================
   PORTFOLIO / GALLERY SECTION
   ============================================ */
.portfolio {
  padding: var(--section-pad) 24px;
  background: var(--cream-warm);
  position: relative;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1.5px solid var(--charcoal);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--gold);
  border-color: var(--charcoal);
}

.portfolio-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-grid:has(.portfolio-item:only-of-type) {
  display: flex;
  justify-content: center;
}

.portfolio-grid:has(.portfolio-item:only-of-type) .portfolio-item {
  width: 100%;
  max-width: 480px;
  height: 480px;
}

#gdrive-status-pill,
.gdrive-status-pill {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}

.portfolio-item:hover {
  transform: translateY(-6px);
}

.portfolio-item.tall {
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.6s var(--ease-out);
}

.portfolio-item.tall img {
  min-height: 580px;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
  background: rgba(13, 13, 13, 0.5);
}

.portfolio-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
}

.portfolio-item:hover .portfolio-item-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item-overlay .portfolio-cat {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* ============================================
   VIDEO SHOWREEL SECTION
   ============================================ */
.showreel {
  padding: var(--section-pad) 24px;
  background: var(--graphite);
  position: relative;
  overflow: hidden;
}

.showreel-container {
  max-width: 1000px;
  margin: 0 auto;
}

.showreel-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 168, 83, 0.15);
}

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

.showreel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
}

.showreel-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--soft-black);
  margin-left: 4px;
}

.showreel-play:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 20px rgba(212, 168, 83, 0.15),
              0 0 0 40px rgba(212, 168, 83, 0.06);
}

.showreel-text {
  text-align: center;
  margin-top: 40px;
}

.showreel-text p {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 24px;
  background: var(--ivory);
  position: relative;
}

.testimonials-track {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--soft-black);
  font-size: 1rem;
}

.testimonial-author-info strong {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-author-info span {
  display: block;
  font-size: 0.78rem;
  color: var(--slate);
}

/* ============================================
   BIG MARQUEE TEXT
   ============================================ */
.marquee-section {
  padding: 60px 0;
  background: var(--soft-black);
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.marquee-section::before { left: 0; }
.marquee-section::after  { right: 0; }

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  padding: 0 40px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-text.filled {
  color: var(--gold);
  -webkit-text-stroke: none;
  opacity: 0.15;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-pad) 24px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info h2 span {
  font-family: var(--font-script);
  color: var(--gold);
  font-weight: 500;
}

.contact-info p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.contact-details .icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 24px;
  padding: 44px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.1);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
  text-align: center;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid rgba(212, 168, 83, 0.2);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--soft-black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--soft-black);
  padding: 60px 24px 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--gold-light);
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 248, 237, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: var(--content-max);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 248, 237, 0.3);
  letter-spacing: 0.05em;
}

/* ============================================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--soft-black);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .testimonials-track {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s var(--ease-out);
  }

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

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

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    padding: 6px 18px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-title span {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

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

  .service-card {
    height: 380px;
  }

  .service-card p {
    max-height: 120px;
    opacity: 0.9;
  }

  .service-card-tag {
    opacity: 1;
    transform: translateY(0);
  }

  .services-social-hub {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    margin-top: 40px;
    gap: 24px;
  }

  .services-social-cards {
    flex-direction: column;
    width: 100%;
  }

  .social-channel-card {
    width: 100%;
  }

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

  .portfolio-item.tall {
    grid-row: span 1;
  }

  .portfolio-item.tall img {
    min-height: 280px;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 16px 20px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
