:root {
  --cream: #F5EFE4;
  --maroon: #7B1E26;
  --maroon-dark: #5a1219;
  --gold: #C9A66B;
  --gold-light: #e8c98a;
  --black: #0d0d0d;
  --white: #fff;
  --glass: rgba(245, 239, 228, 0.08);
  --glass-border: rgba(201, 166, 107, 0.2);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif
}

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

img,
video {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-sans);
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}


/* LOADER */
.intro-skipped #loader {
  display: none !important
}

#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease, visibility .8s ease
}

#loader.hidden {
  opacity: 0;
  visibility: hidden
}

.loader-logo {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: .2em;
  margin-bottom: .25rem;
  line-height: 1
}

.loader-sub {
  font-family: var(--font-sans);
  color: var(--cream);
  font-size: clamp(.5rem, 1.1vw, .8rem);
  letter-spacing: .6em;
  font-weight: 300;
  margin-bottom: 2.2rem;
  opacity: .8
}

.loader-bar {
  width: min(780px, 88vw);
  height: 2px;
  background: rgba(255, 255, 255, .15);
  position: relative;
  overflow: hidden;
  border-radius: 2px
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: loadFill 2s ease forwards;
  box-shadow: 0 0 12px rgba(201, 166, 107, .6)
}

@keyframes loadFill {
  to {
    width: 100%
  }
}

/* CURSOR */

/* NAV */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  transition: all .4s ease;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(123, 30, 38, 0.1)
}

#navbar.scrolled {
  background: rgba(245, 239, 228, 0.98);
  padding: 0.8rem 4rem;
  box-shadow: 0 4px 30px rgba(123, 30, 38, 0.05)
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%
}

.nav-logo img {
  height: 45px;
  filter: none;
  transition: transform .3s ease
}

.nav-logo img:hover {
  transform: scale(1.03)
}

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

.nav-links a {
  color: var(--maroon);
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color .3s
}

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

.nav-cta {
  background: var(--maroon);
  color: var(--cream);
  padding: .6rem 1.8rem;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--maroon);
  transition: all .3s;
  font-weight: 500
}

.nav-cta:hover {
  background: transparent;
  border-color: var(--maroon);
  color: var(--maroon)
}

.mobile-cta-item {
  display: none
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: var(--maroon);
  transition: all .3s ease
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.05);
  z-index: 0
}


.hero-slide.active {
  opacity: 1;
  z-index: 1;
  animation: heroZoomFade 8s ease-out forwards
}

@keyframes heroZoomFade {
  from {
    transform: scale(1.12)
  }

  to {
    transform: scale(1.02)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 29, 36, 0.35) 0%, rgba(13, 13, 13, 0.6) 50%, rgba(92, 29, 36, 0.35) 100%);
}


.hero-watermark {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 20rem);
  color: rgba(245, 239, 228, .04);
  font-weight: 700;
  letter-spacing: .1em;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 2rem
}

.hero-eyebrow {
  font-size: clamp(.85rem, 1.4vw, 1.1rem);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .3s both;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(201, 166, 107, .6), 0 2px 8px rgba(0, 0, 0, .4);
  padding: .5rem 1.5rem;
  display: inline-block;
  opacity: 0.5 !important;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .5s both
}

.hero-title em {
  font-style: italic;
  color: var(--gold)
}

.hero-subtitle {
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 3rem;
  animation: fadeUp .8s .7s both;
  font-weight: 500;
  text-shadow: 0 0 18px rgba(245, 239, 228, .4), 0 2px 6px rgba(0, 0, 0, .5);
  padding: .45rem 1.5rem;
  display: inline-block;
  opacity: 0.5 !important;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeUp .8s .9s both
}

.btn-primary {
  background: var(--maroon);
  color: var(--cream);
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--maroon);
  transition: all .4s;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.btn-primary:hover::before {
  transform: scaleX(1)
}

.btn-primary:hover {
  color: var(--black);
  border-color: var(--gold)
}

.btn-primary span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem
}

.btn-primary {
  position: relative;
  z-index: 1
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 239, 228, .4);
  transition: all .4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.hero-scroll {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp .8s 1.2s both;
  z-index: 10
}

.mouse-icon {
  width: 22px;
  height: 38px;
  border: 1px solid rgba(245, 239, 228, 0.35);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  transition: all .3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
}

.mouse-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 1.5px;
  animation: scrollWheelAnim 1.8s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
  box-shadow: 0 0 4px var(--gold)
}

@keyframes scrollWheelAnim {
  0% {
    opacity: 0;
    transform: translateY(-3px)
  }

  20% {
    opacity: 1
  }

  90% {
    opacity: 0;
    transform: translateY(13px)
  }

  100% {
    opacity: 0
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* PARTICLES */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  animation: floatParticle linear infinite
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0);
    opacity: 0
  }

  10% {
    opacity: .6
  }

  90% {
    opacity: .4
  }

  100% {
    transform: translateY(-20px) rotate(720deg);
    opacity: 0
  }
}

/* SECTIONS COMMON */
section {
  padding: 8rem 4rem
}

.section-label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem
}

.section-header {
  text-align: center;
  margin-bottom: 5rem
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300
}

h2 em {
  font-style: italic;
  color: var(--maroon)
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* ABOUT */
#about {
  background: var(--black);
  color: var(--cream)
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto
}

.about-img-wrapper {
  position: relative
}

.about-img-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover
}

.about-img-frame {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80%;
  height: 80%;
  border: 1px solid var(--gold);
  z-index: -1
}

.about-right .section-label {
  display: block
}

.about-right h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.2
}

.about-right h2 em {
  color: var(--gold)
}

.about-text {
  color: rgba(245, 239, 228, .7);
  line-height: 1.9;
  font-size: .9rem;
  margin-bottom: 3rem
}

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

.stat-card {
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 4px
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border)
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 600
}

.stat-plus {
  font-size: 1.5rem;
  color: var(--gold)
}

.stat-card p {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, .6);
  margin-top: .5rem
}

/* SERVICES */
#services {
  background: var(--cream)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto
}

.service-card {
  padding: 2.5rem 2rem;
  border-radius: 8px;
  background: rgba(245, 239, 228, .6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(123, 30, 38, .1);
  transition: all .4s;
  cursor: default
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--maroon);
  box-shadow: 0 20px 60px rgba(123, 30, 38, .15)
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--maroon)
}

.service-card p {
  font-size: .8rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, .6)
}

/* PORTFOLIO */
#portfolio {
  background: var(--black);
  color: var(--cream)
}

.portfolio-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(245, 239, 228, .2);
  color: rgba(245, 239, 228, .6);
  padding: .5rem 1.5rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  font-family: var(--font-sans)
}

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

.portfolio-grid {
  columns: 3;
  column-gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform .6s ease
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123, 30, 38, .8), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: opacity .4s
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1
}

.portfolio-overlay p {
  color: var(--cream);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase
}

/* TESTIMONIALS */
#testimonials {
  background: var(--cream);
  overflow: hidden
}

.testimonials-track {
  overflow: hidden;
  padding: 2rem 0
}

.testimonials-inner {
  display: flex;
  gap: 2rem;
  transition: transform .6s ease;
  padding: 1rem 2rem
}

.testimonial-card {
  width: clamp(280px, 85vw, 420px);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 166, 107, .3);
  flex-shrink: 0
}

.quote-icon {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 2rem;
  font-style: italic
}

.client-info strong {
  display: block;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-style: normal;
  color: var(--maroon);
  letter-spacing: .1em;
  text-transform: uppercase
}

.client-info span {
  font-size: .75rem;
  color: rgba(0, 0, 0, .5)
}

.testimonial-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem
}

.ctrl-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--maroon);
  background: transparent;
  color: var(--maroon);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .3s;
  font-family: var(--font-sans)
}

.ctrl-btn:hover {
  background: var(--maroon);
  color: var(--cream)
}

/* SOCIAL */
#social {
  background: var(--black);
  color: var(--cream)
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto
}

.social-card {
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  color: var(--cream);
  transition: all .4s;
  display: block
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold)
}

.social-icon {
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center
}

.social-icon svg {
  stroke: var(--gold);
  transition: all .3s ease
}

.social-card:hover svg {
  transform: scale(1.12);
  stroke: var(--cream)
}

.social-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: .5rem
}

.social-card p {
  font-size: .85rem;
  color: var(--gold);
  margin-bottom: .5rem
}

.social-card span {
  font-size: .75rem;
  color: rgba(245, 239, 228, .5)
}

/* CONTACT */
/* CONTACT */
#contact {
  background: var(--cream)
}

.direct-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.contact-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 2.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(123, 30, 38, 0.08);
  text-decoration: none;
  color: inherit;
  transition: all .4s ease;
  box-shadow: 0 4px 20px rgba(123, 30, 38, 0.02)
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--maroon);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 50px rgba(123, 30, 38, 0.07)
}

.c-icon {
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center
}

.c-icon svg {
  stroke: var(--maroon);
  transition: all .3s ease
}

.contact-card:hover svg {
  transform: scale(1.12);
  stroke: var(--gold)
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--maroon);
  margin-bottom: 0.8rem
}

.contact-card p {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.6;
  margin-bottom: 2rem;
  height: 40px
}

.c-value {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--maroon);
  border-bottom: 1px solid rgba(123, 30, 38, 0.15);
  padding-bottom: 0.2rem;
  transition: all .3s
}

.contact-card:hover .c-value {
  border-bottom-color: var(--maroon);
  letter-spacing: 0.05em
}

.contact-secondary {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 6px;
  background: rgba(123, 30, 38, 0.03);
  border: 1px dashed rgba(123, 30, 38, 0.15);
  display: flex;
  justify-content: center
}

.secondary-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  text-align: left
}

.sec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon)
}

.secondary-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 0.3rem
}

.secondary-item p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5
}

.contact-map-wrapper {
  max-width: 800px;
  margin: 2.5rem auto 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(123, 30, 38, 0.1);
  box-shadow: 0 10px 30px rgba(123, 30, 38, 0.04);
  transition: all .4s ease;
  filter: grayscale(40%) contrast(95%)
}

.contact-map-wrapper:hover {
  filter: grayscale(0%) contrast(100%);
  border-color: var(--maroon);
  box-shadow: 0 15px 45px rgba(123, 30, 38, 0.08)
}

.contact-map-wrapper iframe {
  display: block
}

/* FOOTER */
#footer {
  background: var(--maroon);
  color: var(--cream);
  padding: 4rem;
  border-top: none
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem
}

.footer-logo img {
  height: 50px;
  filter: none;
  transition: transform .3s ease
}

.footer-logo img:hover {
  transform: scale(1.03)
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap
}

.footer-links a {
  color: rgba(245, 239, 228, .75);
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .3s;
  font-weight: 500
}

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

.footer-socials {
  display: flex;
  gap: 1rem
}

.soc-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 239, 228, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  font-size: .7rem;
  letter-spacing: .05em;
  transition: all .3s;
  border-radius: 2px;
  font-weight: 600
}

.soc-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black)
}

/* SHOWREEL */
#showreel {
  background: var(--black);
  padding: 8rem 0;
  overflow: hidden
}

#showreel .section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem
}

#showreel .section-label {
  color: var(--gold)
}

#showreel h2 {
  color: var(--cream)
}

.showreel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem
}

.showreel-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 16/9;
  background: var(--black);
  cursor: pointer
}

.showreel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease
}

.showreel-container:hover .showreel-video {
  transform: scale(1.03)
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  pointer-events: none
}

.showreel-container:hover .showreel-overlay {
  background: rgba(13, 13, 13, 0.05)
}

.play-pulse {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(245, 239, 228, 0.4);
  animation: pulsePlay 2.5s infinite;
  transition: all 0.3s;
  z-index: 2
}

.showreel-container:hover .play-pulse {
  transform: scale(1.1);
  background: var(--gold);
  box-shadow: 0 0 30px rgba(201, 166, 107, 0.4);
  animation: none
}

@keyframes pulsePlay {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 239, 228, 0.7)
  }

  70% {
    box-shadow: 0 0 0 18px rgba(245, 239, 228, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 239, 228, 0)
  }
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 3rem
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: rgba(245, 239, 228, .5)
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  border-radius: 4px;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1)
}

#lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.06)
}

#lightbox-video {
  max-width: min(620px, 88vw);
  max-height: 60vh;
  object-fit: contain;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  outline: none;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8)
}

.lightbox-close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 100000;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: scale(.8) rotate(-45deg)
}

.lightbox-modal.active .lightbox-close {
  opacity: 1;
  transform: scale(1) rotate(0)
}

.lightbox-close:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--cream);
  transform: scale(1.05) rotate(90deg)
}

body.modal-open {
  overflow: hidden
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .about-container {
    grid-template-columns: 1fr
  }

  .about-img-wrapper img {
    height: 450px
  }

  .contact-actions-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  section {
    padding: 4rem 1.5rem
  }

  #navbar {
    padding: 1rem 1.5rem
  }

  #navbar.scrolled {
    padding: .8rem 1.5rem
  }

  #showreel {
    padding: 5rem 0
  }

  .nav-logo img {
    height: 38px
  }

  .nav-cta {
    display: none
  }

  .mobile-cta-item {
    display: block;
    width: 100%;
    margin-top: 1rem
  }

  .mobile-nav-cta {
    display: block;
    background: var(--maroon);
    color: var(--cream) !important;
    padding: .9rem;
    text-align: center;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--maroon);
    font-weight: 600;
    transition: all .3s
  }

  .hamburger {
    display: flex;
    z-index: 1001
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
  }

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

  .hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(245, 239, 228, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(123, 30, 38, 0.08);
    padding: 7rem 2.5rem;
    flex-direction: column;
    gap: 2.5rem;
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.04);
    z-index: 1000
  }

  .nav-links.active {
    right: 0
  }

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

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

  .portfolio-grid {
    columns: 2
  }

  .social-grid {
    grid-template-columns: 1fr
  }

  .stats-grid {
    grid-template-columns: 1fr
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center
  }

  .contact-card {
    padding: 2.5rem 1.5rem
  }

  .testimonials-inner {
    padding: 1rem 1rem !important;
    gap: 1.5rem
  }

  .lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px
  }
}

@media(max-width:480px) {
  section {
    padding: 3.5rem 1rem
  }

  #showreel {
    padding: 4rem 0
  }

  .nav-logo img {
    height: 34px
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .portfolio-grid {
    columns: 1
  }

  .hero-cta {
    flex-direction: column
  }

  .secondary-item {
    flex-direction: column;
    text-align: center
  }

  .sec-icon {
    margin-bottom: 0.5rem
  }

  .testimonials-inner {
    gap: 1rem
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px
  }
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center !important;
    padding: 0 1.5rem !important;
  }

  .hero-title {
    font-size: 11vw !important;
    line-height: 1.1 !important;
  }

  .hero-eyebrow {
    font-size: 3.5vw !important;
    letter-spacing: 0.1em !important;
    padding: 0.5rem 1rem !important;
    display: inline-block !important;
  }

  .hero-subtitle {
    font-size: 2.8vw !important;
    letter-spacing: 0.1em !important;
    padding: 0.5rem 1rem !important;
    display: inline-block !important;
    white-space: nowrap !important;
  }


  /* Mobile Performance Optimizations */
  .service-card,
  .testimonial-card,
  .contact-card,
  .nav-links,
  .lightbox-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .service-card {
    background: rgba(245, 239, 228, 0.95) !important;
  }

  .testimonial-card {
    background: rgba(255, 255, 255, 0.95) !important;
  }

  .contact-card {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}