:root {
  --blue: #2020ff;
  --blue-dark: #1414cc;
  --red: #ff0055;

  /* Light theme tokens */
  --bg: #ffffff;
  --bg-section: #ffffff;
  --bg-stats: #ffffffeb;
  --color-text: #000000;
  --navbar-bg: rgba(255, 255, 255, 0.92);
  --navbar-border: rgba(0, 0, 0, 0.06);
  --logo-color: #000000;
  --footer-bg: #000000;
  --footer-color: #ffffff;
  --section-label-color: #000000;
  --work-card-bg: #111111;
  --video-card-bg: #111111;
  --contact-cta-bg: #ffffff;
  --contact-cta-color: #000000;
  --cta-btn-bg: #000000;
  --cta-btn-color: #ffffff;
  --explore-link-color: #000000;
}

[data-theme="dark"] {
  --bg: #0d0d0d;
  --bg-section: #111111;
  --bg-stats: #161616;
  --color-text: #f0f0f0;
  --navbar-bg: rgba(13, 13, 13, 0.92);
  --navbar-border: rgba(255, 255, 255, 0.07);
  --logo-color: #ffffff;
  --footer-bg: #000000;
  --footer-color: #ffffff;
  --section-label-color: #f0f0f0;
  --work-card-bg: #1e1e1e;
  --video-card-bg: #1e1e1e;
  --contact-cta-bg: #111111;
  --contact-cta-color: #f0f0f0;
  --cta-btn-bg: #f0f0f0;
  --cta-btn-color: #000000;
  --explore-link-color: #f0f0f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--color-text);
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.gt-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 8px;
  background: var(--navbar-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--navbar-border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.gt-logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--logo-color);
  text-decoration: none;
  transition: color 0.3s ease;
}



.navnav {
  display: flex;
  align-items: center;
  padding: 10px 8px;
  gap: 20px;
  margin-left: auto;
  justify-content: flex-end;
}

.gt-nav {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  color: #ff0055;
  text-decoration: none;

}

@media (min-width: 769px) {
  .gt-hamburger {
    display: none;
  }
}

@media (max-width: 768px) {
  .navnav {
    display: none;
  }
}



.gt-logo span {
  color: var(--blue);
}

.gt-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.gt-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--logo-color);
  transition: all 0.3s;
}

.gt-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: #000;
  z-index: 200;
  padding: 60px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gt-mobile-menu.open {
  right: 0;
}

.gt-mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.gt-mobile-menu a:hover {
  color: #ff0055;
}

.gt-mobile-contact {
  color: #ff0055;
  margin-top: auto;
}

.gt-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.gt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.gt-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.hero {
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
  margin-top: 20px;
  background: #000000;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 6px;
  }
}

.hero-text-block {
  text-align: center;
  position: relative;
  padding: 0 5px;
}

.hero-editor {
  font-family: 'Anton', sans-serif;
  font-size: clamp(5rem, 18vw, 16rem);
  color: #ff0055eb;
  letter-spacing: -0.02em;
  line-height: 0.85;
  display: block;
  margin-top: 50px;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 20px;
  padding-left: 20px;
  margin-top: 16px;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-bottom {
    padding-top: 20px;
    padding-left: 50px;
    margin-top: 16px;
    gap: 20px;
    flex-wrap: wrap;
  }
}

.hero-tagline {
  max-width: 220px;
}

.hero-tagline hr {
  border: none;
  border-top: 2px solid #dbdbdb;
  width: 90px;
  margin-bottom: 10px;
}

.hero-tagline p {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-left: 20px;
  color: #ffffff;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  background: #ff0055eb;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  margin-right: 200px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

@media (max-width: 768px) {
  .hero-cta {
    margin-right: 20px;
  }
}

.hero-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.work-preview {
  padding: 64px 32px;
  background: var(--bg-section);
  transition: background 0.3s ease;
}

.section-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--section-label-color);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  background: var(--work-card-bg);
  transition: background 0.3s ease;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

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

.work-card-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.work-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--explore-link-color);
  text-decoration: none;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.work-explore-link:hover {
  color: var(--blue);
}

.stats-bar {
  background: var(--bg-stats);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  padding: 40px 32px;
  transition: background 0.3s ease;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
}

.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #000000;
  display: block;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(35, 13, 13, 0.6);
  margin-top: 6px;
}

.video-preview {
  padding: 64px 32px;
  background: var(--bg-section);
  transition: background 0.3s ease;
}

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

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

.video-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--video-card-bg);
  transition: background 0.3s ease;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  display: block;
  border: none;
}

.clients-strip {
  padding: 48px 32px;
  background: #f5f5f5;
}

.clients-strip-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 28px;
}

.clients-scroll {
  display: flex;
  overflow-x: auto;
  justify-content: center;
  gap: 16px;
  padding-bottom: 12px;
  scrollbar-width: none;
  margin-left: 20px;
}

.clients-scroll::-webkit-scrollbar {
  display: none;
}

.client-chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 100px;
  padding: 10px 18px 10px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  border: 1.5px solid #e0e0e0;
  transition: border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.client-chip:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.client-chip img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.client-chip-count {
  color: #888;
  font-weight: 400;
  font-size: 0.65rem;
  margin-left: 4px;
}

.client-chip--accent {
  border-color: var(--blue);
  color: var(--blue);
}

.contact-cta {
  background: var(--contact-cta-bg);
  padding: 28px 32px;
  text-align: center;
  color: var(--contact-cta-color);
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-cta .tagline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 16px;
}

.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-btn-bg);
  color: var(--cta-btn-color);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, color 0.3s ease;
}

.cta-btn-white:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.gt-footer {
  background: #000;
  color: #fff;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .gt-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px;
  }

  .gt-footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .gt-footer-copy {
    text-align: left;
  }
}

.gt-footer-logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
}

.gt-footer-logo span {
  color: var(--blue);
}

.gt-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gt-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.gt-footer-links a:hover {
  color: #fff;
}

.gt-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gt-footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.gt-footer-social a:hover {
  color: #ff0055;
}

.gt-footer-social svg {
  width: 18px;
  height: 18px;
}

.gt-footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}