@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Sora:wght@300;400;600;700&display=swap');

:root {
  --bg: #0c0f12;
  --bg-2: #12161b;
  --surface: #171c22;
  --surface-2: #1f262f;
  --text: #f6f2ec;
  --muted: rgba(246, 242, 236, 0.65);
  --accent: #f2b866;
  --accent-2: #5fe2c3;
  --line: rgba(246, 242, 236, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 12% -10%, #1c2530 0%, transparent 55%),
    radial-gradient(900px 500px at 90% 10%, #1b222a 0%, transparent 60%),
    linear-gradient(180deg, #0b0e12 0%, #0c1016 100%);
  min-height: 100vh;
  line-height: 1.6;
}

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

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

button {
  font-family: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="220" height="220" viewBox="0 0 220 220"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="2" stitchTiles="stitch"/></filter><rect width="220" height="220" filter="url(%23n)" opacity="0.12"/></svg>');
  opacity: 0.25;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(11, 14, 18, 0.95) 0%, rgba(11, 14, 18, 0.6) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  color: var(--muted);
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #14110b;
  box-shadow: 0 12px 26px rgba(242, 184, 102, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(242, 184, 102, 0.32);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
}

.btn.ghost:hover {
  border-color: rgba(242, 184, 102, 0.5);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 80px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 5vw, 66px);
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin: 16px 0 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stat {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat span {
  font-size: 22px;
  font-weight: 600;
}

.stat small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(150deg, #131923 0%, #0c1016 55%, #0b0f14 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-media video {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  background: rgba(12, 15, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-media .media-tag {
  position: absolute;
  bottom: 18px;
  right: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(12, 15, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

.section.alt {
  background: linear-gradient(180deg, rgba(18, 22, 27, 0.9) 0%, rgba(12, 16, 22, 0) 100%);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head p {
  color: var(--muted);
  max-width: 520px;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.services-grid,
.feature-grid,
.shorts-grid,
.project-grid,
.team-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 22px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.card .meta {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-column {
  padding: 22px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 16px;
}

.service-column h3 {
  font-size: 18px;
}

.service-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.service-item p {
  color: var(--muted);
  font-size: 14px;
}

.service-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.service-list li::before {
  content: \"*\";
  color: var(--accent);
  margin-right: 8px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  background: linear-gradient(150deg, #171e27 0%, #11161d 60%);
}

.feature span {
  font-size: 32px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.slider {
  position: relative;
}

.slides {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 20px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.slides.work-reel-list {
  grid-auto-columns: minmax(230px, 280px);
}

.slides::-webkit-scrollbar {
  height: 6px;
}

.slides::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.slide {
  scroll-snap-align: start;
  background: var(--surface-2);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 240px;
  display: grid;
  gap: 16px;
}

.slide.reel-slide {
  background: transparent;
  border: none;
  padding: 0;
  min-height: auto;
}

.slide .preview {
  height: 140px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(242, 184, 102, 0.2), rgba(95, 226, 195, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  overflow: hidden;
}

.slide.reel-slide .preview {
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: #05070b;
}

.slide.reel-slide .preview iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

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

.slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.shorts-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.video-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #0b0f14;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.video-card .caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(12, 15, 18, 0.75);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.testimonial {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 180px;
  display: none;
}

.testimonial-card.active {
  display: grid;
  gap: 14px;
}

.testimonial-card p {
  font-size: 18px;
}

.testimonial-card .author {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-copy p + p {
  margin-top: 12px;
}

.about-stats {
  display: grid;
  gap: 16px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card p {
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.social-links a {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0f14;
  color: var(--text);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer-note {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.1em;
  margin: 16px 0;
}

.page-hero p {
  color: var(--muted);
  max-width: 620px;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
}

.project-card .thumb {
  height: 180px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(242, 184, 102, 0.25), rgba(95, 226, 195, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-btn.active {
  color: #14110b;
  background: var(--accent);
  border-color: var(--accent);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.to-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12, 15, 18, 0.8);
  color: var(--text);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 82px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  z-index: 9;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 980px) {
  .nav-bar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 4vw;
    right: 4vw;
    background: rgba(12, 15, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 78px;
  }
}

@media (max-width: 640px) {
  .shorts-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
  }
}
