/* ═══════════════════════════════════════════════════════════════
   EVOQUE — Premium Event Management Website
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --black: #0a0a0a;
  --dark: #141414;
  --grey-900: #1a1a1a;
  --grey-800: #2a2a2a;
  --grey-600: #666;
  --grey-400: #999;
  --grey-200: #d4d4d4;
  --white: #f5f5f3;
  --cream: #e8e6e1;
  --accent: #c9a96e;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ── Animations ───────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.nav-logo-icon {
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  opacity: 1 !important;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 24px;
  border-radius: 0;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.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,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
}

.hero-img {
  transform: scale(1.05);
  transition: transform 20s ease;
  filter: contrast(1.2) saturate(1.3) brightness(1.1);
}

body.loaded .hero-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center 40%,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.3) 55%,
    rgba(0,0,0,0.15) 100%
  ),
  linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.6) 100%
  );
}

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

.hero-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

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

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  opacity: 0.6;
  max-width: 500px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Stats ────────────────────────────────────────────────── */
.stats {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 48px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  display: inline;
}

.stat-plus {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
}

.stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 8px;
}

/* ── Section Common ───────────────────────────────────────── */
.section-header {
  text-align: center;
  padding: 120px 24px 64px;
  max-width: 800px;
  margin: 0 auto;
}

.section-header-left {
  text-align: left;
  margin: 0;
  padding: 0 0 64px 0;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 20px;
}

.section-tag-light {
  opacity: 0.6;
  color: var(--white);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-title em {
  font-style: italic;
}

/* ── Work / Portfolio ─────────────────────────────────────── */
.work {
  padding: 0 48px 120px;
  max-width: 1540px;
  margin: 0 auto;
}

.work-featured {
  position: relative;
  height: 70vh;
  min-height: 500px;
  margin-bottom: 24px;
  overflow: hidden;
  cursor: pointer;
}

.work-featured-img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-featured:hover .work-featured-img {
  transform: scale(1.03);
}

.work-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.8) 100%);
}

.work-featured-info {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 2;
}

.work-featured-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

.work-featured-info p {
  font-size: 14px;
  opacity: 0.5;
}

.work-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
}

/* Grid */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.work-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.work-card-tall {
  grid-row: span 2;
  height: auto;
}

.work-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-card-img {
  transform: scale(1.05);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.75) 100%);
}

.work-card-info {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
}

.work-card-info h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

/* Duo Row */
.work-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.work-card-wide {
  position: relative;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
}

.work-card-wide .work-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card-wide:hover .work-card-img {
  transform: scale(1.05);
}

.work-card-wide .work-card-info {
  position: absolute;
  bottom: 36px;
  left: 36px;
  z-index: 2;
}

.work-card-wide .work-card-info h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
}

.work-cta {
  text-align: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--cream);
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  background: var(--dark);
  padding: 120px 48px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.svc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.svc-card:last-child {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}

.svc-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.05);
}

.svc-card-body {
  padding: 28px 28px 32px;
}

.svc-num {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}

.svc-card-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  margin: 8px 0 12px;
  line-height: 1.3;
}

.svc-card-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── Comparison Table ─────────────────────────────────────── */
.compare, .compare-section {
  padding: 120px 48px;
  background: var(--black);
}

.compare-inner, .compare-section {
  max-width: 900px;
  margin: 0 auto;
}

.compare-table {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.compare-feature-col {
  padding: 20px 28px;
}

.compare-them-col,
.compare-us-col {
  padding: 20px 16px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.compare-them-col {
  opacity: 0.35;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.compare-us-col {
  background: rgba(201, 169, 110, 0.1);
  color: var(--accent);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row:hover {
  background: rgba(255,255,255,0.02);
}

.compare-feature {
  padding: 20px 28px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.75;
}

.compare-them,
.compare-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.compare-us {
  background: rgba(201, 169, 110, 0.04);
}

.compare-check,
.compare-x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.compare-check {
  background: rgba(201, 169, 110, 0.15);
}

.compare-check::before,
.compare-check::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
}

.compare-check::before {
  width: 6px;
  height: 2px;
  transform: rotate(45deg);
  left: 4px;
  top: 11px;
}

.compare-check::after {
  width: 10px;
  height: 2px;
  transform: rotate(-45deg);
  right: 3px;
  top: 9px;
}

.compare-x {
  background: rgba(255,255,255,0.05);
}

.compare-x::before,
.compare-x::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 1.5px;
  background: rgba(255,255,255,0.2);
  border-radius: 1px;
}

.compare-x::before {
  transform: rotate(45deg);
}

.compare-x::after {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .compare {
    padding: 80px 20px;
  }
  .compare-header {
    grid-template-columns: 1fr 100px 100px;
  }
  .compare-row {
    grid-template-columns: 1fr 100px 100px;
  }
  .compare-them-col,
  .compare-us-col {
    font-size: 10px;
    padding: 16px 8px;
  }
  .compare-feature {
    font-size: 13px;
    padding: 16px 16px;
  }
}

@media (max-width: 480px) {
  .compare-header {
    grid-template-columns: 1fr 80px 80px;
  }
  .compare-row {
    grid-template-columns: 1fr 80px 80px;
  }
  .compare-them-col,
  .compare-us-col {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .compare-feature {
    font-size: 12px;
    padding: 14px 12px;
  }
}

/* ── Marquee ──────────────────────────────────────────────── */
.marquee {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  opacity: 0.2;
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px !important;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4 !important;
  font-size: 0 !important;
  display: inline-block;
}

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

/* ── About ────────────────────────────────────────────────── */
.about {
  padding: 120px 48px;
}

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

.about-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: -1;
}

.about-content {
  padding: 20px 0;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 32px;
}

.about-title em {
  font-style: italic;
}

.about-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.55;
  margin-bottom: 20px;
}

.about-clients {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.about-clients-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}

.about-clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.about-clients-list span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial {
  padding: 100px 48px;
  background: var(--grey-900);
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote {
  margin-bottom: 32px;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  opacity: 0.8;
  margin-bottom: 36px;
}

.testimonial cite {
  font-style: normal;
}

.testimonial cite strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.testimonial cite span {
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 1px;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  position: relative;
  padding: 160px 48px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-title em {
  font-style: italic;
}

.contact-sub {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 48px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.contact-alt {
  opacity: 0.35;
  font-size: 13px;
}

.contact-alt span {
  display: block;
  margin-bottom: 12px;
}

.contact-socials {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.contact-socials a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.contact-socials a:hover {
  opacity: 1;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.3;
}

.footer-right {
  font-size: 12px;
  opacity: 0.3;
}

/* ══════════════════════════════════════════════════════════════
   VIDEO PORTFOLIO
   ══════════════════════════════════════════════════════════════ */

.videos {
  padding: 100px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-thumb:hover img {
  transform: scale(1.05);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-thumb:hover .video-play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ══════════════════════════════════════════════════════════════
   PHOTO GALLERY
   ══════════════════════════════════════════════════════════════ */

.gallery {
  padding: 100px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Service card responsive handled in media queries below */

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card-tall {
    grid-row: span 1;
    height: 400px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image {
    height: 400px;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }
  .nav.scrolled {
    padding: 14px 24px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 16px;
    opacity: 1;
  }
  .hero-content {
    padding: 0 20px;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 32px 24px;
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-number, .stat-plus {
    font-size: 36px;
  }
  .work {
    padding: 0 20px 80px;
  }
  .work-featured {
    height: 50vh;
    min-height: 350px;
  }
  .work-featured-info {
    bottom: 28px;
    left: 28px;
  }
  .work-duo {
    grid-template-columns: 1fr;
  }
  .work-card-wide {
    height: 300px;
  }
  .services {
    padding: 80px 24px;
  }
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .svc-card:last-child {
    max-width: 100%;
  }
  .about {
    padding: 80px 24px;
  }
  .about-image::after {
    display: none;
  }
  .testimonial {
    padding: 80px 24px;
  }
  .contact {
    padding: 100px 24px;
  }
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }
  .footer {
    padding: 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    gap: 8px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .videos {
    padding: 80px 24px 60px;
  }
  .gallery {
    padding: 80px 24px 60px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
  }
  .stat:last-child {
    border-bottom: none;
  }
  .work-card {
    height: 300px;
  }
}
