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

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --gold-pale: #F7EDD8;
  --ink: #0E0C0A;
  --ink-soft: #2A2520;
  --cream: #FAF6EE;
  --cream-dark: #F0E8D4;
  --slate: #6B6259;
  --accent-red: #8B1A2F;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}
.cursor.hovered { width: 6px; height: 6px; background: var(--accent-red); }
.cursor-ring.hovered { width: 52px; height: 52px; opacity: 0.3; }

/* ── NAV ── */
nav.pd-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav.pd-nav.scrolled {
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--gold-pale);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}
nav.pd-nav.scrolled .nav-logo { color: var(--ink); }
.nav-logo span { color: var(--gold); }
.pd-nav-links { display: flex; gap: 40px; list-style: none; }
.pd-nav-links a {
  text-decoration: none;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,246,238,0.75);
  transition: color 0.3s;
  position: relative;
}
nav.pd-nav.scrolled .pd-nav-links a { color: var(--slate); }
.pd-nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.pd-nav-links a:hover { color: var(--cream); }
nav.pd-nav.scrolled .pd-nav-links a:hover { color: var(--ink); }
.pd-nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  border: 1px solid rgba(201,169,110,0.5);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
nav.pd-nav.scrolled .nav-cta { color: var(--ink); background: var(--ink); border-color: var(--ink); color: var(--cream); }
nav.pd-nav.scrolled .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--ink);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(201,169,110,0.12) 0%, transparent 70%);
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 13px; font-weight: 300;
  line-height: 1.8;
  color: rgba(250,246,238,0.55);
  max-width: 380px;
  margin-bottom: 48px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.btn-primary-pd {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  display: inline-block;
}
.btn-primary-pd:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost-pd {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,246,238,0.7);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s;
}
.btn-ghost-pd:hover { color: var(--cream); }
.btn-ghost-pd .arrow { font-size: 18px; transition: transform 0.3s; }
.btn-ghost-pd:hover .arrow { transform: translateX(6px); }

.hero-stats {
  position: absolute; bottom: 80px; right: 60px;
  display: flex; flex-direction: column; gap: 28px;
  opacity: 0; animation: fadeLeft 0.8s 1s forwards;
}
.stat {
  text-align: right;
  border-right: 2px solid var(--gold);
  padding-right: 20px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  background: var(--cream-dark);
  overflow: hidden;
}
.hero-right img.hero-portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.3) 0%, transparent 50%);
}
.hero-portrait-label {
  position: absolute; bottom: 40px; left: 40px;
  z-index: 2;
  background: var(--cream);
  padding: 16px 24px;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
}
.portrait-label-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--ink);
}
.portrait-label-sub {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.hero-img-tag {
  position: absolute; top: 40px; right: -1px;
  background: var(--gold);
  padding: 10px 16px 10px 20px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  display: flex;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink);
  padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
}
.marquee-item::after { content: '◆'; font-size: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ── */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
}
.about-visual {
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-visual::before {
  content: 'EMCEE';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none; white-space: nowrap;
  letter-spacing: -0.04em;
}
.about-badge {
  width: 120px; height: 120px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about-badge-text {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(250,246,238,0.5);
  text-align: center;
  padding: 0 10px;
  margin-top: 4px;
}
.about-feature-list { list-style: none; z-index: 1; position: relative; }
.about-feature-list li {
  font-size: 13px; font-weight: 300;
  color: rgba(250,246,238,0.65);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 16px;
}
.about-feature-list li::before {
  content: '';
  width: 6px; height: 6px; flex-shrink: 0;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.about-content {
  padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
  background: #F0E8D4;
}
.section-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 400; line-height: 1.1;
  color: var(--ink);
  margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 14px; font-weight: 300;
  line-height: 1.9; color: var(--slate);
  margin-bottom: 20px;
}
.about-creds {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 40px;
}
.cred-card {
  padding: 22px;
  border: 1px solid #E0D5C0;
  background: #FAF6EE;
  transition: border-color 0.3s, transform 0.3s;
}
.cred-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.cred-icon { font-size: 20px; margin-bottom: 10px; }
.cred-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 6px;
}
.cred-desc { font-size: 12px; font-weight: 300; color: var(--slate); line-height: 1.6; }

/* ── PORTFOLIO ── */
#portfolio { padding: 100px 60px 100px; background: var(--ink); border-bottom: 1px solid rgba(201,169,110,0.2); }
.portfolio-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap; gap: 24px;
}
.portfolio-header-left .section-eyebrow { color: var(--gold); }
.portfolio-header-left .section-eyebrow::before { background: var(--gold); }
.portfolio-filters {
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,246,238,0.45);
  padding: 10px 18px;
  background: none; border: none;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  color: var(--ink);
  background: var(--gold);
}
.portfolio-grid {
  column-count: 4;
  column-gap: 16px;
}
.portfolio-item {
  display: none;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  cursor: pointer;
}
.portfolio-item.show { display: inline-block; }
.portfolio-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.92) 0%, rgba(14,12,10,0.4) 50%, rgba(14,12,10,0.1) 100%);
  opacity: 0.85;
  transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  transform: translateY(0);
  transition: padding 0.4s;
}
.portfolio-item:hover .portfolio-info { padding-bottom: 30px; }
.portfolio-tag {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: none;
  padding: 4px 10px;
  margin-bottom: 8px;
}
.portfolio-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* ── VIDEOS: SHOWREEL BANNER ── */
.showreel-banner {
  background: var(--ink);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showreel-banner-left .section-eyebrow { color: var(--gold); }
.showreel-banner-left .section-eyebrow::before { background: var(--gold); }
.showreel-banner-left .section-title { color: var(--cream); margin-bottom: 18px; }
.showreel-banner-left .section-body { color: var(--slate); margin-bottom: 36px; }
.showreel-cta {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.showreel-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

.showreel-thumb-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.showreel-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(201,169,110,0.15);
}
.showreel-thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.showreel-thumb-link:hover .showreel-thumb-wrap img { transform: scale(1.04); }
.showreel-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,12,10,0.35);
  transition: background 0.3s;
}
.showreel-thumb-link:hover .showreel-play-overlay { background: rgba(14,12,10,0.15); }
.showreel-play-btn {
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,12,10,0.5);
  transition: background 0.3s, transform 0.3s;
}
.showreel-thumb-link:hover .showreel-play-btn {
  background: var(--gold);
  transform: scale(1.1);
}
.showreel-play-btn svg { transition: fill 0.3s; }
.showreel-thumb-link:hover .showreel-play-btn svg path { fill: var(--ink); }

/* ── VIDEOS: MARQUEE DIVIDER ── */
.video-marquee-divider {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
  display: flex;
}
.video-marquee-track {
  display: flex;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.video-marquee-item {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink);
  padding: 0 40px;
}

/* ── VIDEOS: EVENT GALLERY ── */
.event-videos-section {
  background: var(--ink-soft);
  padding: 80px 60px;
}
.event-videos-header { margin-bottom: 48px; }
.event-videos-header .section-eyebrow { color: var(--gold); }
.event-videos-header .section-eyebrow::before { background: var(--gold); }
.event-videos-header .section-title { color: var(--cream); }

.event-video-player-wrap {
  max-width: 860px;
  margin: 0 auto 48px;
}
.event-video-player-box {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  border: 1px solid rgba(201,169,110,0.4);
  overflow: hidden;
}
.event-video-player-box iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

.event-video-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 16px;
  scrollbar-width: none;
}
.event-video-scroll::-webkit-scrollbar { display: none; }

.event-video-card {
  flex-shrink: 0;
  width: 300px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.event-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.event-video-card:hover .event-video-thumb {
  border-color: var(--gold);
  transform: scale(1.03);
}
.event-video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.event-video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,12,10,0.4);
  transition: background 0.3s;
}
.event-video-card:hover .event-video-play { background: rgba(14,12,10,0.15); }
.event-video-card.active .event-video-thumb { border-color: var(--gold); }
.event-video-title {
  margin-top: 10px;
  font-size: 12px; font-weight: 400;
  color: rgba(250,246,238,0.65);
  line-height: 1.4;
}

/* ── TESTIMONIALS ── */
#testimonials { padding: 100px 60px; background: var(--ink); border-top: 1px solid rgba(201,169,110,0.2); }
.testimonials-header { text-align: center; margin-bottom: 70px; }
.testimonials-header .section-eyebrow { justify-content: center; color: var(--gold); }
.testimonials-header .section-eyebrow::before { display: none; }
.testimonials-header .section-title { color: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px;
  border: 1px solid rgba(201,169,110,0.15);
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  background: #1a1610;
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.testimonial-card.featured {
  background: #2a2018;
  border-color: var(--gold);
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
}
.testimonial-card.featured .quote-mark { opacity: 0.5; }
.testimonial-text {
  font-size: 13px; font-weight: 300;
  line-height: 1.85;
  color: rgba(250,246,238,0.65);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card.featured .testimonial-text { color: rgba(250,246,238,0.65); }
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.testimonial-card.featured .testimonial-author { border-color: rgba(201,169,110,0.2); }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600;
  color: var(--ink); flex-shrink: 0;
}
.author-name {
  font-size: 13px; font-weight: 600;
  color: var(--cream); letter-spacing: 0.05em;
}
.testimonial-card.featured .author-name { color: var(--cream); }
.author-role { font-size: 11px; font-weight: 300; color: rgba(250,246,238,0.4); margin-top: 2px; }
.testimonial-card.featured .author-role { color: rgba(250,246,238,0.4); }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 18px; }

/* ── CLIENTS ── */
.clients-section { padding: 70px 60px; background: #F0E8D4; border-top: 1px solid rgba(201,169,110,0.35); }
.clients-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--slate);
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 40px;
}
.clients-eyebrow::before, .clients-eyebrow::after { content: ''; width: 40px; height: 1px; background: rgba(14,12,10,0.2); }
.clients-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 12px 8px;
}
.client-pill {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 22px;
  border: 1px solid rgba(14,12,10,0.15);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.client-pill:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ── CONNECT ── */
#connect {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  border-top: 4px solid transparent;
  border-image: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent) 1;
}
.connect-left {
  background: var(--gold);
  padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
}
.connect-left .section-title { color: var(--ink); }
.connect-left .section-body { color: rgba(14,12,10,0.65); }
.connect-details { margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.connect-item {
  display: flex; align-items: center; gap: 18px;
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.3s;
}
.connect-item:hover { opacity: 0.7; }
.connect-icon {
  width: 46px; height: 46px;
  background: rgba(14,12,10,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.connect-item-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }
.connect-item-value { font-size: 15px; font-weight: 500; margin-top: 2px; }

.connect-right {
  background: var(--cream);
  padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
}
.connect-right .section-eyebrow { color: var(--gold); }
.connect-right .section-eyebrow::before { background: var(--gold); }
.connect-right .section-title { color: var(--ink); }
.connect-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--slate);
}
.form-input, .form-textarea {
  border: 1px solid #E0D5C0;
  background: #FFFFFF;
  padding: 13px 16px;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(14,12,10,0.35); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.form-submit:hover { background: #25D366; color: #ffffff; transform: translateY(-2px); }

.form-input.invalid, .form-textarea.invalid { border-color: #c0392b; box-shadow: none; }
.form-error {
  font-size: 11px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
  min-height: 16px;
}

/* ── FOOTER ── */
.pd-footer {
  background: var(--ink);
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(250,246,238,0.3); letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(250,246,238,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ── FLOATING CONNECT BUTTON ── */
.floating-connect {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(201,169,110,0.5);
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s;
}
.floating-connect:hover {
  background: var(--ink);
  color: var(--gold);
  box-shadow: 0 4px 24px rgba(14,12,10,0.4);
  transform: translateY(-2px);
  animation: none;
}
.floating-connect.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%   { box-shadow: 0 4px 20px rgba(201,169,110,0.5); }
  50%  { box-shadow: 0 4px 32px rgba(201,169,110,0.85); }
  100% { box-shadow: 0 4px 20px rgba(201,169,110,0.5); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── TABLET ── */
@media (max-width: 1024px) {
  .portfolio-grid { column-count: 3; }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav.pd-nav { padding: 18px 24px; }
  nav.pd-nav.scrolled { padding: 14px 24px; }
  .pd-nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-logo { color: var(--cream); font-size: 18px; }
  nav.pd-nav.scrolled .nav-logo { color: var(--ink); }

  #home { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 28px 80px; min-height: 100vh; }
  .hero-stats { position: static; flex-direction: row; gap: 20px; margin-top: 48px; }
  .stat { text-align: left; border-right: none; border-left: 2px solid var(--gold); padding-right: 0; padding-left: 14px; }

  #about { grid-template-columns: 1fr; clip-path: none; margin-top: 0; }
  .about-visual { display: none; }
  .about-content { padding: 60px 28px; background: #F0E8D4; }
  .about-creds { grid-template-columns: 1fr; }

  #portfolio { padding: 60px 20px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .portfolio-grid { column-count: 2; }

  #testimonials { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .showreel-banner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .event-videos-section { padding: 60px 20px; }
  .event-video-player-wrap { max-width: 100%; }
  .event-video-scroll { display: grid; grid-template-columns: 1fr 1fr; overflow-x: visible; }
  .event-video-card { width: 100%; flex-shrink: unset; }

  .clients-section { padding: 50px 20px; }

  #connect { grid-template-columns: 1fr; }
  .connect-left { padding: 60px 28px; }
  .connect-right { padding: 60px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .pd-footer { flex-direction: column; gap: 20px; text-align: center; padding: 30px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

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

@media (max-width: 480px) {
  .portfolio-grid { column-count: 1; }
}
