/*
Theme Name: Vaya
Theme URI: https://vaya.co.id
Author: Vaya Team
Description: Pixel-perfect WordPress replication of Vaya digital agency site.
Version: 2.0.0
License: GPL-2.0-or-later
Text Domain: vaya
*/

/* ==========================================================================
   RESET & GLOBAL
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

:root {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --bg: rgb(17, 17, 17);
  --white: rgb(250, 250, 250);
  --gray: rgb(128, 128, 128);
  --dark-gray: rgb(48, 48, 48);
  --accent: rgb(235, 52, 149);
  --blue: rgb(10, 0, 150);
  --muted: rgb(82, 82, 82);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-family: 'Manrope', 'Manrope Placeholder', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* Hide cursor on touch devices */

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dark-gray); border-radius: 3px; }

/* ==========================================================================
   NAVIGATION (centered glass menu bar)
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  z-index: 9;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 40px 0 0;
  mix-blend-mode: difference;
}

.site-nav .nav-inner {
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1208px;
  padding: 0;
}

.site-nav .nav-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  width: 700px;
  padding: 12px 12px 12px 20px;
  overflow: hidden;
}

.site-nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min-content;
}

.site-nav .logo img {
  aspect-ratio: 1 / 1;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.site-nav .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.site-nav .nav-links a {
  font-family: 'Manrope', 'Manrope Placeholder', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s;
  letter-spacing: 0;
}

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

.site-nav .nav-right {
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

/* Burger Icon */
.nav-burger {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  width: min-content;
  padding: 0;
  position: relative;
}

.nav-burger .burger-icon {
  cursor: pointer;
  width: 40px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.nav-burger .burger-bar {
  position: absolute;
  border-radius: 10px;
  background-color: var(--white);
  transition: width 0.25s ease, left 0.25s ease, top 0.25s ease;
}

.nav-burger .burger-bar.top {
  width: 34px;
  height: 2px;
  left: calc(50% - 34px / 2);
  top: 14px;
}

.nav-burger .burger-bar.mid {
  width: 19px;
  height: 2px;
  left: calc(67.5% - 19px / 2);
  top: calc(50.4% - 2px / 2);
}

.nav-burger .burger-bar.bot {
  width: 26px;
  height: 2px;
  left: calc(60% - 26px / 2);
  top: calc(70.6% - 2px / 2);
}

/* Burger hover */
.nav-burger:hover .burger-bar.top { width: 24px; left: calc(62.5% - 24px / 2); }
.nav-burger:hover .burger-bar.mid { width: 34px; left: calc(50% - 34px / 2); }
.nav-burger:hover .burger-bar.bot { width: 18px; left: calc(70% - 18px / 2); }

/* Burger active */
.nav-burger.active .burger-bar.top {
  width: 29px; left: calc(50% - 29px / 2); top: 24px;
}
.nav-burger.active .burger-bar.mid { opacity: 0; }
.nav-burger.active .burger-bar.bot {
  width: 29px; left: calc(50% - 29px / 2); top: calc(50% - 2px / 2);
}

/* Overlay Menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: calc(50% - 100% / 2);
  width: 100%;
  height: 100%;
  z-index: 3;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding-top: 160px;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay nav ul { text-align: center; }
.nav-overlay nav ul li { margin: 20px 0; }
.nav-overlay nav ul li a {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}
.nav-overlay nav ul li a:hover { color: var(--accent); }

/* ==========================================================================
   HERO SECTION (sticky, 100vh)
   ========================================================================== */

.hero {
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 120px 0 40px;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1208px;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero brand label */
.hero-brand {
  font-family: 'Manrope', 'Manrope Placeholder', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

/* Hero headings */
.hero-heading {
  font-family: 'Manrope', 'Manrope Placeholder', sans-serif;
  font-size: clamp(64px, 11vw, 164px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero-heading.outline {
  color: var(--bg);
  -webkit-text-stroke: 1px var(--white);
}

.hero-desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  padding: 8px 10px 0;
  align-items: center;
}

.hero-desc {
  font-family: 'Manrope', 'Manrope Placeholder', sans-serif;
  font-size: clamp(20px, 2.15vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
}

/* Hero marquee images */
.hero-marquee {
  position: absolute;
  left: -32%;
  top: -18%;
  width: 170%;
  height: 520px;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: rotate(-30deg);
}

.hero-marquee-bottom {
  position: absolute;
  right: -35%;
  bottom: -28%;
  width: 170%;
  height: 520px;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: rotate(-30deg);
}

.marquee-track {
  position: absolute;
  display: flex;
  gap: 2px;
  opacity: 0.98;
}

.marquee-track img {
  width: 420px;
  height: 280px;
  object-fit: cover;
}

.marquee-track-alt {
  top: 300px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.scroll-indicator .scroll-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-line-track {
  width: 2px;
  height: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scroll-line-bg {
  position: absolute;
  width: 2px;
  height: 33px;
  background-color: var(--dark-gray);
  left: calc(50% - 2px / 2);
  top: calc(50% - 33px / 2);
  z-index: 1;
}

.scroll-line-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 14px;
  background-color: var(--accent);
  z-index: 2;
  animation: scrollFill 2s ease-in-out infinite;
}

@keyframes scrollFill {
  0%, 100% { height: 10px; opacity: 0.5; }
  50% { height: 28px; opacity: 1; }
}

/* Hero large scrolling text */
.hero-scroll-text {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(120px, 33vw, 480px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: var(--bg);
  -webkit-text-stroke: 1px var(--dark-gray);
  white-space: nowrap;
}

/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */

.section {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  z-index: 2;
  scroll-margin-top: 110px;
}

.section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1208px;
  padding: 0 40px;
}

.section-label {
  font-family: 'Manrope', 'Manrope Placeholder', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

/* ==========================================================================
   SERVICES SECTION (horizontal scroll, sticky)
   ========================================================================== */

.services-section {
  padding: 112px 0 140px;
}

.services-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.services-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.service-item {
  flex-shrink: 0;
  width: 400px;
  height: 256px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  overflow: hidden;
  cursor: default;
}

.service-item h3 {
  font-family: 'Manrope', 'Manrope Placeholder', sans-serif;
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  white-space: nowrap;
}

.services-cta {
  text-align: center;
  margin-top: 60px;
}

.services-cta p {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 32px;
}

/* ==========================================================================
   PROJECTS SECTION (horizontal scroll cards)
   ========================================================================== */

.projects-section {
  padding: 0 0 140px;
}

.projects-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.projects-track {
  display: flex;
  gap: 2px;
  will-change: transform;
}

.project-card {
  flex-shrink: 0;
  height: 312px;
  width: 226px;
  overflow: hidden;
  position: relative;
}

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

.project-card:hover img {
  transform: scale(1.08);
}

.project-card .project-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px;
  background: linear-gradient(transparent, rgba(17, 17, 17, 0.95));
}

.project-card .project-title h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 1px solid var(--dark-gray);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.3s, background 0.3s;
  margin-top: 40px;
}

.view-all:hover {
  border-color: var(--accent);
  background: rgba(235, 52, 149, 0.1);
}

.view-all .arrow {
  transition: transform 0.3s;
}

.view-all:hover .arrow {
  transform: translateX(4px);
}

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.error-404-actions .view-all {
  margin-top: 0;
}

/* ==========================================================================
   ARTICLES SECTION
   ========================================================================== */

.articles-section {
  padding: 0 0 140px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.article-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.article-card .article-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5625 / 1;
  overflow: hidden;
  border-radius: 20px;
}

.article-card .article-img img {
  position: absolute;
  top: 0;
  left: calc(50% - 100% / 2);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-img img {
  transform: scale(1.09);
}

.article-card .tag {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.article-card h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 8px;
}

.article-card .desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  padding: 0 0 40px;
}

.contact-marquee {
  width: 100%;
  overflow: hidden;
  padding: 60px 0 40px;
}

.contact-marquee .marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
}

.contact-marquee span {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(120px, 33vw, 480px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bg);
  -webkit-text-stroke: 1px var(--dark-gray);
  white-space: nowrap;
  padding-right: 40px;
}

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

.contact-layout {
  display: flex;
  flex-direction: row;
  gap: 80px;
  width: 100%;
  margin-top: 40px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 24px;
  width: 40%;
}

.contact-info-col h2 {
  font-family: 'Manrope', 'Manrope Placeholder', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  text-align: right;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.contact-details .detail-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-details .detail-value {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
}

.contact-details .detail-value a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--dark-gray);
  transition: text-decoration-color 0.3s;
}

.contact-details .detail-value a:hover {
  text-decoration-color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.3s, background 0.3s;
}

.social-links a:hover {
  border-color: var(--accent);
  background: rgba(235, 52, 149, 0.1);
}

.contact-form-col {
  width: 60%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-status {
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
}

.contact-form-status--success {
  border-color: rgba(63, 214, 131, 0.55);
  background: rgba(63, 214, 131, 0.12);
}

.contact-form-status--error {
  border-color: rgba(235, 52, 149, 0.65);
  background: rgba(235, 52, 149, 0.12);
}

.vaya-contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .form-group {
  position: relative;
  overflow: hidden;
}

.contact-form .form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transition: background 0.3s, height 0.3s;
}

.contact-form .form-group:focus-within::after {
  background: rgb(0, 153, 255);
  height: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.2;
  border: none;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 240px;
  padding: 16px 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border: none;
}

.contact-form button:hover {
  background: #c92d7e;
  transform: scale(1.02);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: linear-gradient(194deg, rgb(10, 0, 150) 0%, var(--accent) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 80px 0 330px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1208px;
  padding: 0 40px;
}

.footer-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
}

.footer-left {
  display: flex;
  flex: 1 0 0px;
  flex-direction: column;
  gap: 16px;
}

.footer-left .brand {
  font-size: 28px;
  font-weight: 700;
}

.footer-left .address {
  max-width: 280px;
  font-size: 14px;
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.6;
}

.footer-right {
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
}

.footer-right .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-right .footer-links a {
  font-size: 14px;
  color: rgba(250, 250, 250, 0.8);
  transition: color 0.3s;
}

.footer-right .footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(250, 250, 250, 0.8);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 50px 0 0;
}

.footer-bottom .copyright {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.5);
}

.footer-marquee {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}

.footer-marquee .marquee-track {
  display: flex;
  gap: 40px;
  animation: footerMarquee 60s linear infinite;
}

.footer-marquee span {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(120px, 33vw, 480px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 250, 250, 0.15);
  white-space: nowrap;
}

@keyframes footerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   PAGE HERO (sub-pages)
   ========================================================================== */

.page-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 1;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 150px 0 60px;
  overflow: hidden;
}

.page-hero-inner {
  width: 100%;
  max-width: 1208px;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.hero-note {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-top: 32px;
}

.section-tight {
  padding: 0 0 100px;
}

.section-bottom-space {
  padding: 80px 0 150px;
}

/* ==========================================================================
   ABOUT PAGE - Stats
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--dark-gray);
  width: 100%;
}

.stat-item {
  background: var(--bg);
  padding: 48px 32px;
  text-align: center;
}

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.4;
}

/* ==========================================================================
   ABOUT PAGE - Values Grid
   ========================================================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

.value-card {
  padding: 0;
}

.value-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.5;
}

.value-card h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ==========================================================================
   ABOUT PAGE - Clients Grid
   ========================================================================== */

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.client-item {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  padding: 12px 24px;
  border: 1px solid var(--dark-gray);
  border-radius: 100px;
}

/* ==========================================================================
   PROJECTS PAGE - Full Grid
   ========================================================================== */

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--dark-gray);
  width: 100%;
}

.project-card-full {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg);
}

.project-card-full .project-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.project-card-full:hover img {
  transform: scale(1.08);
}

.project-card-full h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(transparent, rgba(17, 17, 17, 0.95));
  z-index: 1;
}

/* ==========================================================================
   PROJECT SINGLE - Case Study
   ========================================================================== */

.project-detail-hero,
.project-work-detail-section,
.project-related-section {
  position: relative;
  z-index: 2;
}

.project-detail-hero {
  padding: 96px 0 70px;
}

.project-work-detail-section,
.project-related-section {
  padding: 70px 0;
}

.project-detail-inner {
  width: min(100% - 160px, 1720px);
  margin: 0 auto;
}

.project-detail-hero .project-detail-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1fr);
  align-items: start;
  gap: 82px;
}

.project-detail-copy {
  max-width: 760px;
}

.project-detail-category {
  max-width: 760px;
  color: var(--gray);
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1.22;
  margin-bottom: 16px;
}

.project-detail-copy h1 {
  color: var(--white);
  font-size: clamp(34px, 2.75vw, 54px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 36px;
}

.project-detail-block {
  margin-top: 44px;
}

.project-detail-block h2 {
  color: var(--white);
  font-size: clamp(19px, 1.45vw, 28px);
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.project-detail-block p,
.project-detail-content {
  color: var(--white);
  font-size: clamp(20px, 1.55vw, 28px);
  font-weight: 500;
  line-height: 1.45;
}

.project-detail-stats {
  margin: 6px 0 0;
  padding-left: 26px;
  color: var(--white);
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.45;
  font-weight: 800;
}

.project-detail-logo-card,
.project-work-detail-image,
.project-work-detail-placeholder {
  overflow: hidden;
  border-radius: 18px;
}

.project-detail-logo-card {
  aspect-ratio: 1.31 / 1;
  background: #050505;
}

.project-detail-logo-card img,
.project-work-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.project-detail-stack .section-label {
  margin: 0;
}

.project-work-detail-image {
  width: 100%;
  background: #fff;
}

.project-work-detail-image img {
  height: auto;
}

.project-work-detail-placeholder {
  min-height: min(54vw, 820px);
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 54px, rgba(0, 0, 0, 0.42) 56px, rgba(0, 0, 0, 0.42) 60px),
    #2b2b2b;
}

.project-related-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.case-study { max-width: 800px; margin: 0 auto; }

.case-study h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.case-study h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--accent);
  margin: 40px 0 16px;
}

.case-study p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: var(--dark-gray);
  margin-top: 32px;
}

.case-study-metrics .metric-item {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
}

.case-study-metrics .metric-value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.case-study-metrics .metric-label {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   BLOG SINGLE - Article Layout
   ========================================================================== */

.blog-detail-page {
  position: relative;
  z-index: 2;
  padding: 190px 0 120px;
}

.blog-detail-inner {
  width: min(100% - 240px, 1200px);
  margin: 0 auto;
}

.blog-detail-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.blog-detail-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 18px;
  border-radius: 4px;
  background: #eb3495;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.blog-detail-hero h1 {
  margin: 24px 0 46px;
  color: var(--white);
  font-size: clamp(54px, 5.2vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-detail-image {
  width: 100%;
  aspect-ratio: 2.14 / 1;
  overflow: hidden;
  border-radius: 4px;
}

.blog-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-content {
  margin: 0 auto;
  padding: 90px 150px 0;
}

.blog-detail-wp-content {
  color: var(--white);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 400;
  line-height: 1.45;
}

.blog-detail-wp-content > * {
  margin: 0 0 1.25em;
}

.blog-detail-wp-content > :last-child {
  margin-bottom: 0;
}

.blog-detail-divider {
  width: 100%;
  height: 1px;
  background: #303030;
}

.blog-recent-section {
  padding: 90px 150px 0;
}

.blog-recent-section h2 {
  padding: 52px 0 20px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.blog-recent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 86px;
  padding-top: 60px;
}

.blog-recent-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  color: var(--white);
}

.blog-recent-card .blog-detail-category {
  color: #111;
}

.blog-recent-date {
  margin: 20px 0 28px;
  color: var(--gray);
  font-size: 18px;
}

.blog-recent-card h3 {
  color: var(--white);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.12;
}

/* ==========================================================================
   BLOGS PAGE - Grid
   ========================================================================== */

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  transition: background 0.3s ease;
}

.blog-card:hover {
  background: #222;
}

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

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card-body {
  padding: 24px;
}

.blog-card-body .tag {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 8px;
}

.blog-card-body .desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.pagination-wrap {
  margin-top: 60px;
  text-align: center;
}

.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  margin: 0 6px;
  border: 1px solid var(--dark-gray);
  border-radius: 999px;
  color: var(--gray);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(235, 52, 149, 0.08);
}

/* ==========================================================================
   RESPONSIVE — Framer 3-tier breakpoints: Desktop 1440+ | Tablet 810-1439 | Mobile <=809
   ========================================================================== */

/* --- PAGE ELEMENT RESPONSIVE (tablet range) --- */
@media (max-width: 1439px) {
  .projects-full-grid { grid-template-columns: repeat(2, 1fr); }
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; margin-top: 40px; }
  .case-study-metrics { grid-template-columns: repeat(2, 1fr); }
  .blog-card-body h3 { font-size: 16px; }
}

/* --- TABLET: 810px - 1439px (main structural overrides) --- */
@media (min-width: 810px) and (max-width: 1439px) {
  .site-nav .nav-inner { max-width: 730px; }
  .site-nav .nav-links { gap: 20px; }
  .site-nav .nav-links a { font-size: 13px; }
  .section-inner { max-width: 730px; }
  .footer-inner { max-width: 730px; }
  .hero-inner { max-width: 730px; }
  .hero-heading { font-size: clamp(54px, 9vw, 128px); }
  .hero-desc { font-size: clamp(18px, 2.1vw, 28px); }
  .hero-brand { font-size: 16px; }
  .hero-marquee, .hero-marquee-bottom { width: 210%; }
  .marquee-track img { width: 360px; height: 240px; }
  .service-item { width: 340px; height: 220px; }
  .service-item h3 { font-size: 38px; }
  .section-label { font-size: 16px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-right { flex-direction: column; flex: none; max-width: 150px; gap: 10px; }
  .site-footer { padding: 80px 0 270px; }
  .contact-layout { flex-direction: column; gap: 60px; }
  .contact-info-col, .contact-form-col { width: 100%; }
  .contact-info-col { align-items: flex-start; }
  .contact-info-col h2, .contact-details { text-align: left; }
  .page-hero-inner { max-width: 730px; padding: 0; }
  .hero-note { font-size: 22px; }
  .project-intro { padding: 160px 0 50px; }
  .project-intro .hero-heading { font-size: clamp(32px, 6vw, 56px); }
  .project-card-full h3 { font-size: 15px; padding: 24px 18px; }
  .projects-full-grid { grid-template-columns: repeat(3, 1fr); }
  .case-study h2 { font-size: clamp(22px, 3vw, 30px); }
  .case-study p { font-size: 15px; }
}

/* --- MOBILE: <= 809px --- */
@media (max-width: 809px) {
  .site-nav {
    flex-direction: column;
    align-items: center;
    padding: 20px 0 0;
  }
  .site-nav .nav-inner { flex: none; max-width: 90%; width: 100%; }
  .site-nav .nav-bar { width: 100%; padding: 12px; }
  .site-nav .nav-links { display: none; }
  .hero {
    gap: 20px;
    padding: 110px 0 30px;
  }
  .hero-inner { padding: 0 24px; }
  .hero-heading { font-size: clamp(46px, 13vw, 72px); }
  .hero-heading.outline { font-size: clamp(46px, 13vw, 72px); }
  .hero-desc { font-size: 16px; }
  .hero-brand { font-size: 14px; letter-spacing: 0.05em; }
  .hero-marquee, .hero-marquee-bottom {
    left: calc(50% - 240% / 2);
    width: 240%;
  }
  .marquee-track img { width: 260px; height: 172px; }
  .marquee-track-alt { top: 188px; }
  .section-inner { width: 90%; padding: 0; }
  .page-hero-inner { width: 90%; padding: 0; }
  .section-label { font-size: 14px; }
  .services-section { padding: 75px 0; }
  .projects-section { padding: 0 0 75px; }
  .service-item { width: 260px; height: 180px; }
  .service-item h3 { font-size: 22px; line-height: 1.3; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card h3 { font-size: 16px; }
  .articles-section { padding: 60px 0 80px; }
  .contact-layout { flex-direction: column; gap: 40px; }
  .contact-info-col, .contact-form-col { width: 100%; }
  .contact-info-col { align-items: flex-start; }
  .contact-info-col h2, .contact-details { text-align: left; }
  .contact-info-col h2 { font-size: 28px; }
  .contact-form button { width: 100%; }
  .contact-marquee span { font-size: clamp(60px, 20vw, 120px); }
  .scroll-indicator { bottom: 75px; }
  .site-footer { padding: 80px 0 40px; }
  .footer-inner { width: 90%; padding: 0; }
  .footer-left .brand { font-size: 22px; }
  .nav-overlay nav ul li a { font-size: clamp(28px, 7vw, 40px); }
}

/* ==========================================================================
   ANIMATION INITIAL STATES
   ========================================================================== */

[data-animate] {
  opacity: 0;
  transform: perspective(1200px) translateY(40px);
  will-change: transform, opacity;
}

[data-animate="nav"] {
  transform: translateX(-50%) perspective(1200px) translateY(40px);
}

[data-animate="hero-text"] {
  transform: perspective(1200px) translateY(40px);
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  .marquee-track, .marquee-inner { animation: none !important; }
}

/* ==========================================================================
   FRAMER FIDELITY OVERRIDES
   ========================================================================== */

.site-nav {
  top: 0;
  left: 0;
  transform: none;
  padding: 40px 0 0;
  mix-blend-mode: normal;
  z-index: 20;
}

.site-nav .nav-inner {
  width: calc(100% - 232px);
  max-width: 1208px;
  flex: none;
}

.site-nav .nav-bar {
  width: 100%;
  height: 54px;
  padding: 0;
  overflow: visible;
}

.site-nav .nav-links {
  display: none;
}

.site-nav .logo img {
  width: 54px;
  height: 54px;
  max-width: none;
  object-fit: contain;
}

.site-nav .logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.site-nav .nav-right {
  flex: none;
}

.nav-burger {
  height: 54px;
  width: 42px;
}

.nav-burger .burger-icon {
  width: 42px;
}

.nav-burger .burger-bar.top {
  width: 34px;
  top: 15px;
  left: 4px;
}

.nav-burger .burger-bar.mid {
  width: 24px;
  top: 26px;
  left: 14px;
}

.nav-burger .burger-bar.bot {
  width: 28px;
  top: 37px;
  left: 10px;
}

[data-animate="nav"] {
  transform: perspective(1200px) translateY(40px);
}

.hero,
.page-hero-section {
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  gap: 0;
  justify-content: center;
  position: relative;
}

.hero-inner,
.page-hero-inner {
  max-width: 1060px;
  padding: 0 40px;
  align-items: center;
  text-align: center;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -30px;
}

.hero-brand {
  color: var(--gray);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 26px;
  text-transform: none;
}

.page-hero-section .hero-brand {
  margin-bottom: 14px;
}

.hero-heading,
.hero-heading.outline,
.page-hero-section .hero-heading.outline {
  color: var(--white);
  -webkit-text-stroke: 0;
  font-size: 140px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-desc-wrapper {
  max-width: 760px;
  padding: 44px 0 0;
}

.page-hero-section .hero-desc-wrapper {
  max-width: 650px;
}

.page-hero-section .about-desc-wrapper {
  max-width: 980px;
}

.hero-desc {
  color: var(--gray);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
}

.page-hero-section .hero-desc {
  font-size: 22px;
}

.about-hero-desc span {
  color: var(--accent);
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-art-card {
  position: absolute;
  object-fit: cover;
  border-radius: 4px;
  will-change: transform;
}

.hero-art-card-top-left {
  width: 560px;
  height: 315px;
  left: 88px;
  top: -145px;
  transform: rotate(-30deg);
}

.hero-art-card-right {
  width: 460px;
  height: 560px;
  right: -120px;
  top: -76px;
  transform: rotate(-30deg);
}

.hero-art-card-center {
  width: 690px;
  height: 460px;
  left: 68%;
  top: 38%;
  transform: translate(-50%, -50%) rotate(-30deg);
  z-index: 1;
}

.hero-art-card-bottom-left {
  width: 640px;
  height: 420px;
  left: -92px;
  bottom: 112px;
  transform: rotate(-30deg);
}

.hero-art-card-bottom-right {
  width: 560px;
  height: 700px;
  right: 70px;
  bottom: -345px;
  transform: rotate(-30deg);
}

.hero .hero-inner {
  z-index: 2;
  margin-top: -54px;
}

.hero .hero-heading {
  opacity: 0.92;
}

.home-intro-section {
  min-height: 100vh;
  padding: 245px 0 0;
  justify-content: flex-start;
}

.home-intro-copy {
  max-width: 1000px;
  padding: 0 40px;
  text-align: center;
  color: var(--gray);
  font-size: 34px;
  line-height: 1.35;
  font-weight: 400;
}

.scroll-indicator {
  bottom: 48px;
  flex-direction: column-reverse;
  gap: 12px;
}

.scroll-indicator .scroll-text {
  color: var(--gray);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.scroll-line-track {
  height: 34px;
}

.scroll-line-bg {
  background: var(--dark-gray);
}

.scroll-line-fill {
  background: var(--accent);
}

.services-section {
  padding: 170px 0 160px;
}

.services-section .section-inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  justify-content: stretch;
  gap: 60px;
}

.section-label {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.services-list {
  width: 100%;
}

.service-item {
  width: 100%;
  height: 178px;
  align-items: flex-start;
  justify-content: center;
  border-bottom: 1px solid rgba(250, 250, 250, 0.35);
}

.service-item h3 {
  white-space: normal;
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
}

.services-cta {
  grid-column: 2;
  margin-top: 42px;
  text-align: left;
}

.services-cta p {
  color: var(--gray);
  font-size: 28px;
}

.projects-section {
  padding: 0 0 160px;
}

.projects-track {
  gap: 20px;
}

.project-card {
  width: 226px;
  height: 220px;
  border-radius: 4px;
  background: #050505;
}

.project-card img {
  object-fit: cover;
}

.project-card .project-title {
  display: none;
}

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: transparent;
  width: 100%;
}

.project-card-full {
  aspect-ratio: 1.02 / 1;
  border-radius: 4px;
  background: #050505;
}

.project-card-full h3 {
  display: flex;
  align-items: center;
  min-height: 38%;
  padding: 28px 24px;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.05;
  background: #111;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card-full:hover h3,
.project-card-full:focus-visible h3 {
  opacity: 1;
  transform: translateY(0);
}

.project-card-full img {
  object-fit: cover;
}

.articles-grid,
.blogs-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 84px 40px;
}

.article-card,
.blog-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.blog-card:hover {
  background: transparent;
}

.article-card .article-img,
.blog-card-img {
  aspect-ratio: 1.25 / 1;
  border-radius: 20px;
}

.article-card .tag,
.blog-card-body .tag {
  display: inline-flex;
  width: max-content;
  background: var(--accent);
  color: #111;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.blog-card-body {
  padding: 28px 0 0;
}

.article-card h3,
.blog-card-body h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.article-card .desc,
.blog-card-body .desc {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--gray);
  font-weight: 600;
}

.about-statement-section {
  padding: 150px 0 180px;
}

.about-statement-inner {
  max-width: 1208px;
  width: calc(100% - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 490px;
  align-items: center;
  gap: 40px;
}

.about-statement {
  font-size: 48px;
  line-height: 1.4;
  color: var(--gray);
  font-weight: 400;
}

.about-statement::first-line {
  color: var(--white);
}

.about-statement-media {
  height: 700px;
  border-radius: 4px;
  overflow: hidden;
}

.about-statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.72;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgb(26, 196, 105);
  color: #fff;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.whatsapp-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .site-nav .nav-inner {
    width: min(730px, calc(100% - 80px));
    max-width: 730px;
  }

  .section-inner,
  .footer-inner,
  .hero-inner,
  .page-hero-inner {
    max-width: 730px;
  }

  .hero-heading,
  .hero-heading.outline,
  .page-hero-section .hero-heading.outline {
    font-size: 104px;
  }

  .hero-art-card-top-left {
    width: 520px;
    height: 360px;
    left: -140px;
    top: -40px;
  }

  .hero-art-card-right {
    width: 430px;
    height: 330px;
    right: -150px;
    top: 170px;
  }

  .hero-art-card-center {
    width: 470px;
    height: 315px;
  }

  .hero-art-card-bottom-left {
    width: 380px;
    height: 370px;
  }

  .hero-art-card-bottom-right {
    width: 370px;
    height: 470px;
  }

  .services-section .section-inner {
    grid-template-columns: 1fr;
    max-width: 730px;
    gap: 70px;
  }

  .services-cta {
    grid-column: auto;
  }

  .projects-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blogs-grid,
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   FINAL OPEN NAV HEADER ALIGNMENT
   ========================================================================== */

.nav-open .site-nav .nav-inner {
  width: min(1208px, calc(100% - 232px)) !important;
  max-width: 1208px !important;
  flex: none !important;
}

.nav-open .site-nav .nav-bar {
  width: 100% !important;
}

.nav-open .site-nav .logo,
.nav-open .site-nav .logo img {
  width: 50px !important;
  height: 50px !important;
}

.nav-open .nav-burger {
  width: min-content !important;
  height: 50px !important;
}

.nav-open .nav-burger .burger-icon {
  width: 40px !important;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .nav-open .site-nav .nav-inner {
    width: min(730px, calc(100% - 80px)) !important;
    max-width: 730px !important;
  }
}

@media (max-width: 809px) {
  .nav-open .site-nav .nav-inner {
    width: 100% !important;
    max-width: 90% !important;
  }
}

/* Final fullscreen menu scale and spacing. */
.nav-overlay-menu {
  padding-top: 138px !important;
}

.nav-overlay-menu a,
.nav-overlay nav ul li a {
  font-size: clamp(44px, 3vw, 62px) !important;
  line-height: 1.34 !important;
}

.nav-overlay-contact {
  width: 760px !important;
  max-width: 760px !important;
  bottom: 34px !important;
  grid-template-columns: minmax(0, 1fr) 230px !important;
  gap: 56px !important;
  font-size: 18px !important;
  line-height: 1.32 !important;
}

.nav-overlay-contact div {
  gap: 18px !important;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .nav-overlay-menu {
    padding-top: 120px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(40px, 4.1vw, 54px) !important;
    line-height: 1.28 !important;
  }

  .nav-overlay-contact {
    width: 540px !important;
    max-width: 540px !important;
    grid-template-columns: minmax(0, 1fr) 190px !important;
    gap: 36px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 809px) {
  .nav-overlay-menu {
    padding-top: 98px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(28px, 8.2vw, 38px) !important;
    line-height: 1.22 !important;
  }

  .nav-overlay-contact {
    width: auto !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    font-size: 12px !important;
    bottom: 26px !important;
  }
}

/* ==========================================================================
   HOME TUNING 2026-05-14
   ========================================================================== */

.nav-overlay-menu a {
  font-size: clamp(44px, 4.35vw, 70px);
  line-height: 1.16;
}

.nav-overlay-contact {
  bottom: 68px;
}

.hero .hero-inner {
  mix-blend-mode: normal;
  z-index: 3;
}

.hero .hero-heading,
.hero .hero-heading.outline {
  color: rgba(250, 250, 250, 0.94);
  text-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
}

.hero-art {
  opacity: 0.72;
}

.hero-art-strip {
  height: 430px;
  width: 126%;
}

.hero-art-strip-main {
  left: calc(50% - 126% / 2);
  top: calc(50% - 430px / 2);
}

.hero-art-strip-top {
  left: -600px;
  top: -205px;
}

.hero-art-strip-bottom {
  right: -330px;
  bottom: -350px;
}

.hero-art-track {
  animation: vayaHeroStripDown 42s linear infinite;
}

.hero-art-strip-top .hero-art-track {
  animation: vayaHeroStripDownAlt 48s linear infinite;
}

.hero-art-strip-bottom .hero-art-track {
  animation: vayaHeroStripDown 54s linear infinite reverse;
}

.hero-strip-item.has-offset {
  padding-top: 104px;
}

.hero-strip-card-wide {
  width: 520px;
  height: 330px;
}

.hero-strip-card-short {
  width: 520px;
  height: 305px;
}

@keyframes vayaHeroStripDown {
  from {
    transform: translate3d(-900px, -260px, 0);
  }
  to {
    transform: translate3d(220px, 260px, 0);
  }
}

@keyframes vayaHeroStripDownAlt {
  from {
    transform: translate3d(120px, -220px, 0);
  }
  to {
    transform: translate3d(-980px, 260px, 0);
  }
}

.home-intro-section {
  min-height: 220vh;
}

.home-intro-copy {
  max-width: 1320px;
  padding-top: 16vh;
  font-size: clamp(28px, 3.05vw, 50px);
  line-height: 1.28;
}

.service-item:first-child .service-preview {
  opacity: 0 !important;
  transform: translateX(-18px) scale(0.98) !important;
}

.service-item:first-child .service-copy p {
  max-height: 0 !important;
  opacity: 0 !important;
  margin-top: 0 !important;
}

.service-item:first-child .service-arrow {
  opacity: 0 !important;
  transform: none !important;
}

.service-item:first-child:hover .service-preview,
.service-item:first-child:focus-within .service-preview {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
}

.service-item:first-child:hover .service-copy p,
.service-item:first-child:focus-within .service-copy p {
  max-height: 92px !important;
  opacity: 1 !important;
  margin-top: 20px !important;
}

.service-item:first-child:hover .service-arrow,
.service-item:first-child:focus-within .service-arrow {
  opacity: 1 !important;
  transform: translate(8px, 8px) !important;
}

.footer-marquee {
  bottom: -180px;
}

.site-footer {
  padding-bottom: 315px;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .nav-overlay-menu a {
    font-size: clamp(40px, 6vw, 62px);
  }

  .home-intro-copy {
    font-size: clamp(27px, 4.2vw, 42px);
  }

  .hero-art-strip {
    width: 180%;
  }

  .hero-art-strip-main {
    left: calc(50% - 180% / 2);
  }

  .hero-strip-card-wide,
  .hero-strip-card-short {
    width: 440px;
  }
}

@media (max-width: 809px) {
  .nav-overlay-menu a {
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.16;
  }

  .home-intro-copy {
    font-size: clamp(23px, 6.8vw, 34px);
  }

  .hero-art {
    opacity: 0.58;
  }

  .hero-art-strip {
    width: 230%;
    height: 330px;
  }

  .hero-art-strip-main {
    left: calc(50% - 230% / 2);
    top: calc(50% - 330px / 2);
  }

  .hero-strip-card-wide,
  .hero-strip-card-short {
    width: 330px;
    height: 220px;
  }

  .footer-marquee {
    bottom: -96px;
  }
}

/* ==========================================================================
   FOOTER REFERENCE MATCH
   ========================================================================== */

.site-footer {
  min-height: 1013px;
  padding: 160px 0 0;
  background: linear-gradient(112deg, #d9469e 0%, #81229a 44%, #12008f 100%);
  justify-content: flex-start;
  overflow: hidden;
}

.footer-inner {
  width: min(100% - 232px, 1720px);
  max-width: 1720px;
  padding: 0;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(260px, 0.75fr) minmax(500px, 1.45fr);
  gap: 80px;
  align-items: end;
  padding-top: 0;
  width: 100%;
}

.footer-left {
  display: block;
}

.footer-left::before {
  content: "CONTACT";
  display: block;
  margin: 0 0 108px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.footer-left .brand {
  display: none;
}

.footer-left .address {
  max-width: 380px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 400;
}

.footer-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 0;
}

.footer-contact-lines a {
  width: max-content;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.footer-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
}

.footer-right .footer-links:first-child {
  display: none;
}

.footer-right .footer-links {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 92px;
  width: 100%;
}

.footer-right .footer-links a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  text-transform: lowercase;
}

.footer-right .footer-links a span {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.footer-right .footer-links a span img,
.footer-right .footer-links a span svg {
  display: block;
}

.footer-bottom {
  padding: 20px 0 0;
  width: 100%;
}

.footer-bottom .copyright {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.footer-marquee {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 100%;
  overflow: visible;
  padding: 0;
  z-index: 1;
}

.footer-marquee .marquee-track {
  position: relative;
  display: flex;
  gap: 0;
  width: max-content;
  animation: footerMarquee 60s linear infinite;
}

.footer-marquee span {
  color: #111;
  -webkit-text-stroke: 0;
  font-size: clamp(380px, 34vw, 680px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .site-footer {
    min-height: 690px;
  }

  .footer-inner {
    width: min(100% - 80px, 980px);
  }

  .footer-main {
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 42px;
  }

  .footer-left .address,
  .footer-contact-lines a,
  .footer-right .footer-links a {
    font-size: 14px;
  }

  .footer-right .footer-links {
    gap: 44px;
  }

  .footer-marquee {
    bottom: -30px;
  }
}

@media (max-width: 809px) {
  .site-footer {
    min-height: 760px;
    padding-top: 34px;
  }

  .footer-inner {
    width: calc(100% - 48px);
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .footer-left::before {
    margin-bottom: 42px;
    font-size: 14px;
  }

  .footer-left .address,
  .footer-contact-lines a,
  .footer-right .footer-links a {
    font-size: 14px;
  }

  .footer-contact-lines {
    gap: 18px;
  }

  .footer-right {
    width: 100%;
  }

  .footer-right .footer-links {
    gap: 22px;
    justify-content: space-between;
  }

  .footer-right .footer-links a span {
    font-size: 14px;
  }

  .footer-bottom {
    padding-top: 30px;
  }

  .footer-bottom .copyright {
    font-size: 14px;
  }

  .footer-marquee {
    bottom: -20px;
  }

  .footer-marquee span {
    font-size: clamp(240px, 52vw, 360px);
  }
}

@media (min-width: 810px) and (max-width: 1439px) {
  .project-detail-inner {
    width: min(100% - 80px, 1180px);
  }

  .project-detail-hero .project-detail-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .project-detail-copy {
    max-width: 820px;
  }

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

@media (max-width: 809px) {
  .project-detail-hero {
    padding: 120px 0 44px;
  }

  .project-work-detail-section,
  .project-related-section {
    padding: 44px 0;
  }

  .project-detail-inner {
    width: calc(100% - 32px);
  }

  .project-detail-hero .project-detail-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-detail-copy h1 {
    margin-bottom: 28px;
  }

  .project-detail-block {
    margin-top: 32px;
  }

  .project-detail-block p,
  .project-detail-content,
  .project-detail-stats {
    font-size: 18px;
  }

  .project-detail-logo-card,
  .project-work-detail-image,
  .project-work-detail-placeholder {
    border-radius: 12px;
  }

  .project-detail-stack {
    gap: 26px;
  }

  .project-work-detail-placeholder {
    min-height: 360px;
  }

  .project-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (min-width: 810px) and (max-width: 1439px) {
  .blog-detail-page {
    padding-top: 150px;
  }

  .blog-detail-inner {
    width: min(100% - 80px, 980px);
  }

  .blog-detail-content,
  .blog-recent-section {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 809px) {
  .blog-detail-page {
    padding: 122px 0 80px;
  }

  .blog-detail-inner {
    width: calc(100% - 32px);
  }

  .blog-detail-category {
    min-height: 28px;
    padding: 4px 14px;
    font-size: 14px;
  }

  .blog-detail-hero h1 {
    margin: 20px 0 32px;
    font-size: clamp(38px, 12vw, 54px);
  }

  .blog-detail-image {
    aspect-ratio: 1.25 / 1;
  }

  .blog-detail-content,
  .blog-recent-section {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-detail-content {
    padding-top: 58px;
  }

  .blog-detail-wp-content {
    font-size: 19px;
  }

  .blog-recent-section {
    padding-top: 64px;
  }

  .blog-recent-section h2 {
    padding: 42px 0 18px;
  }

  .blog-recent-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 42px;
  }

  .blog-recent-card {
    min-height: 0;
  }
}

/* ==========================================================================
   SERVICES PAGE REFERENCE PASS
   ========================================================================== */

.services-page-section {
  position: relative;
  z-index: 4;
  background: var(--bg);
  padding: 115px 0 165px;
}

.services-page-section .section-inner {
  max-width: none;
  width: min(100% - 128px, 1720px);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(620px, 828px) minmax(260px, 1fr);
  align-items: start;
  gap: 0;
  padding: 0;
}

.services-page-section .section-label {
  grid-column: 2;
  justify-self: start;
  margin: 0 0 116px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.services-page-list {
  grid-column: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.services-page-item {
  min-height: 178px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(250, 250, 250, 0.36);
  padding: 0 0 36px;
}

.services-page-item + .services-page-item {
  padding-top: 83px;
}

.services-page-item h3 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(30px, 2vw, 38px);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .services-page-section {
    padding: 95px 0 135px;
  }

  .services-page-section .section-inner {
    width: min(100% - 80px, 730px);
    display: flex;
    flex-direction: column;
  }

  .services-page-section .section-label {
    margin-bottom: 82px;
  }

  .services-page-list {
    width: 100%;
  }
}

@media (max-width: 809px) {
  .services-page-section {
    padding: 74px 0 112px;
  }

  .services-page-section .section-inner {
    width: calc(100% - 48px);
    display: flex;
    flex-direction: column;
  }

  .services-page-section .section-label {
    margin-bottom: 54px;
    font-size: 15px;
  }

  .services-page-item {
    min-height: 132px;
    padding-bottom: 26px;
  }

  .services-page-item + .services-page-item {
    padding-top: 45px;
  }

  .services-page-item h3 {
    max-width: 320px;
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 1.18;
  }
}

/* ==========================================================================
   ABOUT PAGE REFERENCE PASS
   ========================================================================== */

.about-dynamic-word {
  color: var(--accent);
  display: inline-block;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.about-dynamic-word.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.about-statement-section {
  position: relative;
  min-height: 260vh;
  padding: 0;
  z-index: 3;
}

.about-statement-inner {
  position: sticky;
  top: 0;
  min-height: 100vh;
  max-width: none;
  width: min(100% - 128px, 1840px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 490px);
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}

.about-statement {
  display: block;
  max-width: 1280px;
  font-size: clamp(46px, 4.4vw, 78px);
  line-height: 1.34;
  color: rgb(82, 82, 82);
  font-weight: 400;
  letter-spacing: 0;
}

.about-statement::first-line {
  color: inherit;
}

.about-statement-word {
  color: rgb(82, 82, 82);
  transition: color 0.08s linear;
}

.about-statement-word.is-initial {
  color: var(--white);
}

.about-statement-media {
  position: relative;
  width: 100%;
  height: min(700px, 72vh);
  min-height: 520px;
  border-radius: 4px;
  overflow: hidden;
  background: #050505;
}

.about-statement-media img,
.about-statement-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.45s ease, transform 0.6s ease;
}

.about-statement-image.is-active {
  opacity: 0.76;
  transform: scale(1);
}

.section-tight {
  padding: 0 0 145px;
}

.about-stats-section,
.about-values-section {
  position: relative;
  z-index: 4;
  background: var(--bg);
}

.about-stats-section {
  padding-top: 95px;
}

.about-stats-section .section-inner,
.about-values-section .section-inner {
  max-width: none;
  width: 100%;
  align-items: stretch;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(56px, 7vw, 145px);
  background: transparent;
  width: min(100% - 128px, 1840px);
  max-width: none;
  margin: 0 auto;
}

.stat-item {
  background: transparent;
  padding: 0;
  text-align: left;
}

.stat-number {
  font-size: clamp(72px, 6.4vw, 124px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 54px;
  letter-spacing: 0;
}

.stat-label {
  max-width: 300px;
  color: var(--white);
  font-size: clamp(28px, 1.9vw, 38px);
  line-height: 1.32;
  font-weight: 400;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(80px, 12vw, 210px);
  row-gap: 128px;
  width: min(100% - 128px, 1840px);
  max-width: none;
  margin: 0 auto;
  padding-top: 60px;
}

.value-card {
  padding: 0;
}

.value-num {
  color: rgb(116, 116, 116);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 32px;
  opacity: 0.78;
}

.value-card h3 {
  color: var(--white);
  font-size: clamp(42px, 3.1vw, 58px);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 50px;
  letter-spacing: 0;
}

.value-card p {
  color: rgb(116, 116, 116);
  font-size: clamp(24px, 1.85vw, 36px);
  line-height: 1.35;
  font-weight: 400;
}

.section-bottom-space {
  padding: 160px 0 190px;
}

.section-bottom-space .section-inner {
  max-width: none;
  width: 100%;
  align-items: stretch;
  overflow: hidden;
}

.section-bottom-space .section-label {
  width: min(100% - 128px, 1840px);
  margin: 0 auto 125px;
  font-size: 24px;
  font-weight: 500;
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(80px, 8vw, 150px);
  width: max-content;
  animation: vayaClientsMarquee 46s linear infinite;
  will-change: transform;
}

.clients-marquee:hover .clients-marquee-track {
  animation-play-state: paused;
}

.client-logo-item {
  flex: 0 0 auto;
  width: clamp(180px, 13vw, 310px);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.76;
  filter: grayscale(1) invert(1) brightness(0.88);
}

.client-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes vayaClientsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 810px) and (max-width: 1439px) {
  .about-statement-inner,
  .stats-grid,
  .values-grid {
    width: min(100% - 80px, 1208px);
  }

  .about-statement-inner {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
  }

  .about-statement {
    font-size: clamp(42px, 5vw, 62px);
  }

  .about-statement-media {
    min-height: 480px;
  }

  .stat-number {
    font-size: clamp(58px, 8vw, 92px);
    margin-bottom: 34px;
  }

  .stat-label {
    font-size: clamp(22px, 2.6vw, 30px);
  }

  .values-grid {
    column-gap: 70px;
    row-gap: 90px;
  }
}

@media (max-width: 809px) {
  .about-dynamic-word {
    text-align: center;
  }

  .about-statement-section {
    min-height: auto;
    padding: 120px 0;
  }

  .about-statement-inner {
    position: relative;
    width: calc(100% - 48px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0;
  }

  .about-statement {
    font-size: clamp(30px, 8.2vw, 46px);
    line-height: 1.28;
  }

  .about-statement-media {
    min-height: 0;
    height: 420px;
  }

  .stats-grid {
    width: calc(100% - 48px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 28px;
  }

  .stat-number {
    font-size: clamp(52px, 16vw, 78px);
    margin-bottom: 22px;
  }

  .stat-label {
    font-size: clamp(19px, 5.5vw, 26px);
  }

  .values-grid {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    row-gap: 74px;
    padding-top: 32px;
  }

  .value-num {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .value-card h3 {
    font-size: clamp(32px, 9vw, 44px);
    margin-bottom: 24px;
  }

  .value-card p {
    font-size: clamp(19px, 5.3vw, 25px);
  }

  .section-bottom-space {
    padding: 110px 0 130px;
  }

  .section-bottom-space .section-label {
    width: calc(100% - 48px);
    margin-bottom: 78px;
    font-size: 18px;
  }

  .clients-marquee-track {
    gap: 58px;
    animation-duration: 34s;
  }

  .client-logo-item {
    width: 190px;
    height: 70px;
  }
}

/* Final fullscreen menu sizing override. Keep this as the last rule so it wins. */
.nav-overlay-menu {
  align-items: flex-start !important;
  padding-top: 150px !important;
}

.nav-overlay-menu ul {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
}

.nav-overlay-menu a,
.nav-overlay nav ul li a {
  font-size: clamp(42px, 2.9vw, 58px) !important;
  line-height: 1.08 !important;
}

.nav-overlay-contact {
  width: min(54vw, 650px) !important;
  max-width: 650px !important;
  bottom: 44px !important;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  gap: 46px !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}

.nav-overlay-contact div {
  gap: 15px !important;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .nav-overlay-menu {
    padding-top: 126px !important;
  }

  .nav-overlay-menu ul {
    gap: 18px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(36px, 3.8vw, 48px) !important;
  }

  .nav-overlay-contact {
    width: min(58vw, 500px) !important;
    max-width: 500px !important;
    grid-template-columns: minmax(0, 1fr) 170px !important;
    gap: 28px !important;
    font-size: 13px !important;
    bottom: 34px !important;
  }
}

@media (max-width: 809px) {
  .nav-overlay-menu {
    padding-top: 94px !important;
  }

  .nav-overlay-menu ul {
    gap: 14px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(27px, 7.8vw, 36px) !important;
    line-height: 1.12 !important;
  }

  .nav-overlay-contact {
    width: auto !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    font-size: 12px !important;
    bottom: 24px !important;
  }
}

/* Final fullscreen menu sizing override. Keep this at EOF so it wins. */
.nav-overlay-menu {
  align-items: flex-start !important;
  padding-top: 150px !important;
}

.nav-overlay-menu ul {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
}

.nav-overlay-menu a,
.nav-overlay nav ul li a {
  font-size: clamp(42px, 2.9vw, 58px) !important;
  line-height: 1.08 !important;
}

.nav-overlay-contact {
  width: min(54vw, 650px) !important;
  max-width: 650px !important;
  bottom: 44px !important;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  gap: 46px !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}

.nav-overlay-contact div {
  gap: 15px !important;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .nav-overlay-menu {
    padding-top: 126px !important;
  }

  .nav-overlay-menu ul {
    gap: 18px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(36px, 3.8vw, 48px) !important;
  }

  .nav-overlay-contact {
    width: min(58vw, 500px) !important;
    max-width: 500px !important;
    grid-template-columns: minmax(0, 1fr) 170px !important;
    gap: 28px !important;
    font-size: 13px !important;
    bottom: 34px !important;
  }
}

@media (max-width: 809px) {
  .nav-overlay-menu {
    padding-top: 94px !important;
  }

  .nav-overlay-menu ul {
    gap: 14px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(27px, 7.8vw, 36px) !important;
    line-height: 1.12 !important;
  }

  .nav-overlay-contact {
    width: auto !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    font-size: 12px !important;
    bottom: 24px !important;
  }
}

/* Keep fullscreen header controls on the default nav rail. */
.nav-open .site-nav .nav-inner {
  width: min(1208px, calc(100% - 232px)) !important;
  max-width: 1208px !important;
  flex: none !important;
}

.nav-open .site-nav .nav-bar {
  width: 100% !important;
}

.nav-open .site-nav .logo,
.nav-open .site-nav .logo img {
  width: 50px !important;
  height: 50px !important;
}

.nav-open .nav-burger {
  width: min-content !important;
  height: 50px !important;
}

.nav-open .nav-burger .burger-icon {
  width: 40px !important;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .nav-open .site-nav .nav-inner {
    width: min(730px, calc(100% - 80px)) !important;
    max-width: 730px !important;
  }
}

@media (max-width: 809px) {
  .nav-open .site-nav .nav-inner {
    width: 100% !important;
    max-width: 90% !important;
  }
}

/* ==========================================================================
   FINAL MENU POSITION TUNE
   ========================================================================== */

.nav-overlay-shell {
  width: min(100% - 392px, 1656px) !important;
  padding-top: 50px !important;
}

.nav-open .site-nav .nav-inner {
  width: min(1208px, calc(100% - 232px)) !important;
  max-width: 1208px !important;
  flex: none !important;
}

.nav-overlay-menu {
  padding-top: 106px !important;
}

.nav-overlay-menu a,
.nav-overlay nav ul li a {
  font-size: clamp(56px, 3.55vw, 74px) !important;
  line-height: 1.28 !important;
  font-weight: 400 !important;
}

.nav-overlay-contact {
  left: auto !important;
  right: 0 !important;
  bottom: 16px !important;
  width: 850px !important;
  max-width: 850px !important;
  grid-template-columns: minmax(0, 1fr) 250px !important;
  gap: 68px !important;
  font-size: 20px !important;
  line-height: 1.24 !important;
}

.nav-overlay-contact div {
  gap: 24px !important;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .nav-overlay-shell,
  .nav-open .site-nav .nav-inner {
    width: min(100% - 160px, 1000px) !important;
  }

  .nav-overlay-menu {
    padding-top: 96px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(46px, 4.9vw, 62px) !important;
    line-height: 1.24 !important;
  }

  .nav-overlay-contact {
    width: 620px !important;
    max-width: 620px !important;
    grid-template-columns: minmax(0, 1fr) 210px !important;
    gap: 44px !important;
    font-size: 17px !important;
    bottom: 18px !important;
  }
}

@media (max-width: 809px) {
  .nav-overlay-shell,
  .nav-open .site-nav .nav-inner {
    width: calc(100% - 48px) !important;
  }

  .nav-overlay-menu {
    padding-top: 92px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(30px, 9.2vw, 42px) !important;
    line-height: 1.2 !important;
  }

  .nav-overlay-contact {
    width: auto !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 30px !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    font-size: 13px !important;
  }
}

/* ==========================================================================
   FINAL FULLSCREEN MENU REFERENCE OVERRIDE
   ========================================================================== */

.nav-overlay {
  background: #111 !important;
}

.nav-overlay-shell {
  width: min(100% - 392px, 1656px) !important;
  padding: 52px 0 54px !important;
}

.nav-overlay-menu {
  height: auto !important;
  display: block !important;
  padding-top: 128px !important;
}

.nav-overlay-menu a,
.nav-overlay nav ul li a {
  font-size: clamp(78px, 4.85vw, 102px) !important;
  line-height: 1.36 !important;
  font-weight: 400 !important;
}

.nav-overlay-contact {
  right: 0 !important;
  bottom: 22px !important;
  max-width: 860px !important;
  grid-template-columns: minmax(430px, 1fr) minmax(260px, auto) !important;
  gap: 90px !important;
  font-size: 28px !important;
  line-height: 1.27 !important;
}

.nav-overlay-contact div {
  gap: 28px !important;
}

.nav-overlay-contact a {
  text-underline-offset: 8px;
}

.nav-open .site-nav .nav-inner {
  width: min(1208px, calc(100% - 232px)) !important;
  max-width: 1208px !important;
  flex: none !important;
}

.nav-open .site-nav .nav-bar {
  width: 100% !important;
}

.nav-open .site-nav .logo {
  margin-left: 0 !important;
}

.nav-open .site-nav .nav-right {
  width: auto !important;
  flex: 1 1 auto !important;
}

.nav-overlay-contact {
  max-width: 960px !important;
  grid-template-columns: minmax(520px, 1fr) minmax(280px, auto) !important;
  gap: 72px !important;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .nav-overlay-shell {
    width: min(100% - 160px, 1000px) !important;
    padding-top: 44px !important;
  }

  .nav-overlay-menu {
    padding-top: 120px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(62px, 6.4vw, 84px) !important;
    line-height: 1.31 !important;
  }

  .nav-overlay-contact {
    max-width: 680px !important;
    grid-template-columns: minmax(330px, 1fr) minmax(220px, auto) !important;
    gap: 52px !important;
    font-size: 21px !important;
    bottom: 28px !important;
  }

  .nav-open .site-nav .nav-inner {
    width: min(730px, calc(100% - 80px)) !important;
    max-width: 730px !important;
  }
}

@media (max-width: 809px) {
  .nav-overlay-shell {
    width: calc(100% - 48px) !important;
    padding-top: 28px !important;
  }

  .nav-overlay-menu {
    padding-top: 112px !important;
  }

  .nav-overlay-menu a,
  .nav-overlay nav ul li a {
    font-size: clamp(40px, 12vw, 58px) !important;
    line-height: 1.24 !important;
  }

  .nav-overlay-contact {
    left: 0 !important;
    right: 0 !important;
    bottom: 34px !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    font-size: 15px !important;
  }

  .nav-open .site-nav .nav-inner {
    width: 100% !important;
    max-width: 90% !important;
  }
}

@media (max-width: 809px) {
  .site-nav {
    padding: 20px 0 0;
  }

  .site-nav .nav-inner {
    width: calc(100% - 48px);
    max-width: none;
  }

  .site-nav .logo img {
    width: 48px;
    height: 48px;
  }

  .site-nav .logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .hero,
  .page-hero-section {
    min-height: 100svh;
    height: 100svh;
    padding: 0;
  }

  .hero-heading,
  .hero-heading.outline,
  .page-hero-section .hero-heading.outline {
    font-size: 64px;
    line-height: 1.08;
  }

  .hero-brand {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .hero-desc {
    font-size: 18px;
  }

  .hero-art-card-top-left {
    width: 320px;
    height: 240px;
    left: -160px;
    top: 40px;
  }

  .hero-art-card-right {
    width: 300px;
    height: 230px;
    right: -170px;
    top: 130px;
  }

  .hero-art-card-center {
    width: 320px;
    height: 220px;
    top: 48%;
  }

  .hero-art-card-bottom-left {
    width: 270px;
    height: 270px;
    left: -150px;
    bottom: 30px;
  }

  .hero-art-card-bottom-right {
    width: 260px;
    height: 320px;
    right: -150px;
    bottom: -40px;
  }

  .home-intro-section {
    padding: 150px 0 0;
  }

  .home-intro-copy {
    font-size: 24px;
    padding: 0 24px;
  }

  .services-section {
    padding: 110px 0;
  }

  .services-section .section-inner {
    display: flex;
    max-width: none;
    width: calc(100% - 48px);
    gap: 48px;
  }

  .service-item {
    height: 130px;
  }

  .service-item h3 {
    font-size: 26px;
  }

  .projects-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .blogs-grid,
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .blog-card-body h3,
  .article-card h3 {
    font-size: 22px;
  }

  .blog-card-body .desc,
  .article-card .desc {
    font-size: 16px;
  }

  .about-statement-inner {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
  }

  .about-statement {
    font-size: 30px;
  }

  .about-statement-media {
    height: 420px;
  }
}

/* ==========================================================================
   HOME + NAVBAR 1:1 PASS
   ========================================================================== */

.site-nav {
  left: 50%;
  transform: translateX(-50%);
  padding: 40px 0 0;
  z-index: 9;
}

.site-nav .nav-inner {
  flex: 1 0 0px;
  width: 1px;
  max-width: 1208px;
}

.site-nav .nav-bar {
  width: 100%;
  height: 50px;
  padding: 12px 12px 12px 20px;
  overflow: hidden;
}

.site-nav .logo,
.site-nav .logo img {
  width: 50px;
  height: 50px;
}

.site-nav .logo {
  flex: 0 0 50px;
}

.site-nav .nav-right {
  flex: 1 0 0px;
  width: 1px;
  justify-content: flex-end;
  gap: 24px;
}

.nav-burger {
  height: 50px;
  width: min-content;
}

.nav-burger .burger-icon {
  width: 40px;
}

.nav-burger .burger-bar.top {
  width: 34px;
  left: calc(50% - 34px / 2);
  top: 14px;
}

.nav-burger .burger-bar.mid {
  width: 19px;
  left: calc(67.5% - 19px / 2);
  top: calc(50.4032258065% - 2px / 2);
}

.nav-burger .burger-bar.bot {
  width: 26px;
  left: calc(60% - 26px / 2);
  top: calc(70.564516129% - 2px / 2);
}

.hero {
  height: 100vh;
  min-height: 100vh;
  padding: 50px 0 30px;
  gap: 40px;
  justify-content: center;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.hero .hero-inner {
  width: 1208px;
  max-width: 1208px;
  padding: 0;
  margin-top: 0;
  align-items: center;
  justify-content: flex-start;
  mix-blend-mode: difference;
  z-index: 1;
}

.hero .hero-brand {
  max-width: 550px;
  width: min-content;
  padding: 3px 5px;
  margin: 0;
  color: var(--gray);
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  white-space: nowrap;
}

.hero-title-block {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 0 50px;
  overflow: hidden;
}

.hero-word-stage {
  position: relative;
  width: 100%;
  height: 172.8px;
  overflow: hidden;
}

.hero-word-stage .hero-heading {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  opacity: 0;
  transform: translate(-50%, 45%);
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(.35, 0, .2, 1);
  will-change: opacity, transform;
}

.hero-word-stage .hero-heading:nth-child(1) { animation-name: vayaHeroWordCreative; }
.hero-word-stage .hero-heading:nth-child(2) { animation-name: vayaHeroWordMarketing; }
.hero-word-stage .hero-heading:nth-child(3) { animation-name: vayaHeroWordPerformance; }
.hero-word-stage .hero-heading:nth-child(4) { animation-name: vayaHeroWordKol; }
.hero-word-stage .hero-heading:nth-child(5) { animation-name: vayaHeroWordContent; }
.hero-word-stage .hero-heading:nth-child(6) { animation-name: vayaHeroWordBuzzer; }

.hero .hero-heading,
.hero .hero-heading.outline {
  width: auto;
  color: var(--white);
  -webkit-text-stroke: 0;
  font-size: 144px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: pre;
  opacity: 1;
}

.hero-title-block .hero-heading:last-child {
  width: 1208px;
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
}

@keyframes vayaHeroWordCreative {
  0%, 18%, 100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  22%, 96% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  97% {
    opacity: 0;
    transform: translate(-50%, 45%);
  }
}

@keyframes vayaHeroWordMarketing {
  0%, 18% {
    opacity: 0;
    transform: translate(-50%, 45%);
  }
  22%, 38% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  42%, 100% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
}

@keyframes vayaHeroWordPerformance {
  0%, 38% {
    opacity: 0;
    transform: translate(-50%, 45%);
  }
  42%, 48% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  52%, 100% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
}

@keyframes vayaHeroWordKol {
  0%, 48% {
    opacity: 0;
    transform: translate(-50%, 45%);
  }
  52%, 68% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  72%, 100% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
}

@keyframes vayaHeroWordContent {
  0%, 68% {
    opacity: 0;
    transform: translate(-50%, 45%);
  }
  72%, 78% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  82%, 100% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
}

@keyframes vayaHeroWordBuzzer {
  0%, 78% {
    opacity: 0;
    transform: translate(-50%, 45%);
  }
  82%, 98% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
}

.hero-art-strip {
  position: absolute;
  height: 500px;
  width: 140%;
  overflow: hidden;
  transform: rotate(-30deg);
  pointer-events: none;
}

.hero-art-strip-main {
  left: calc(50% - 140% / 2);
  top: calc(50.0376222724% - 500px / 2);
}

.hero-art-strip-top {
  left: -788px;
  top: -160px;
}

.hero-art-strip-bottom {
  right: -400px;
  bottom: -391px;
}

.hero-art-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: vayaHeroStrip 55s linear infinite;
}

.hero-art-strip-top .hero-art-track {
  animation: none;
  transform: translateX(-750px);
}

.hero-art-strip-bottom .hero-art-track {
  animation-duration: 68s;
}

.hero-art-separator {
  flex: 0 0 150px;
  width: 150px;
  height: 10px;
}

.hero-strip-item {
  flex: 0 0 auto;
  width: min-content;
  overflow: hidden;
}

.hero-strip-item.has-offset {
  padding-top: 140px;
}

.hero-strip-card {
  position: relative;
  flex: none;
  overflow: hidden;
  border-radius: 4px;
}

.hero-strip-card-wide {
  width: 600px;
  height: 384px;
}

.hero-strip-card-short {
  width: 600px;
  height: 343px;
}

.hero-strip-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

@keyframes vayaHeroStrip {
  from { transform: translateX(0); }
  to { transform: translateX(-1500px); }
}

@keyframes vayaHeroStripTop {
  from { transform: translateX(-750px); }
  to { transform: translateX(-2250px); }
}

.hero .scroll-indicator {
  bottom: 50px;
  flex-direction: column-reverse;
  gap: 10px;
  width: min-content;
}

.hero .scroll-indicator .scroll-text {
  color: var(--gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0;
}

.hero .scroll-line-track {
  width: 2px;
  height: 34px;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .site-nav .nav-inner {
    max-width: 730px;
  }

  .hero .hero-inner {
    width: 730px;
    max-width: 730px;
  }

  .hero-title-block .hero-heading:last-child {
    width: 730px;
  }

  .hero-word-stage {
    height: 124.8px;
  }

  .hero .hero-heading,
  .hero .hero-heading.outline {
    font-size: 104px;
  }

  .hero-art-strip,
  .hero-art-strip-top,
  .hero-art-strip-bottom {
    width: 200%;
  }

  .hero-art-strip-main {
    left: calc(50% - 200% / 2);
  }
}

@media (max-width: 809px) {
  .site-nav {
    align-items: center;
    flex-direction: column;
    padding: 40px 0 0;
  }

  .site-nav .nav-inner {
    flex: none;
    width: 100%;
    max-width: 90%;
  }

  .site-nav .nav-bar {
    padding: 12px;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding: 50px 0 30px;
  }

  .hero .hero-inner {
    width: 90%;
    max-width: 90%;
  }

  .hero-title-block .hero-heading:last-child {
    width: 90%;
  }

  .hero-word-stage {
    height: 71.68px;
  }

  .hero .hero-heading,
  .hero .hero-heading.outline {
    font-size: 64px;
    line-height: 1.12;
  }

  .hero-art-strip,
  .hero-art-strip-top,
  .hero-art-strip-bottom {
    width: 200%;
  }

  .hero-art-strip-main {
    left: calc(50% - 200% / 2);
  }

  .hero .scroll-indicator {
    bottom: 75px;
  }
}

/* ==========================================================================
   HOME / NAV REFINEMENT PASS
   ========================================================================== */

.site-nav {
  z-index: 1000;
}

.site-nav .nav-inner {
  position: relative;
  z-index: 1002;
}

.nav-open .site-nav {
  mix-blend-mode: normal;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  z-index: 1001;
  background: #111;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.nav-overlay-shell {
  position: relative;
  width: min(100% - 232px, 1208px);
  height: 100%;
  margin: 0 auto;
  padding: 42px 0 72px;
}

.nav-overlay-logo {
  display: none;
}

.nav-overlay-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-overlay-menu {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-overlay nav ul,
.nav-overlay-menu ul {
  text-align: left;
}

.nav-overlay nav ul li,
.nav-overlay-menu li {
  margin: 0;
}

.nav-overlay nav ul li a,
.nav-overlay-menu a {
  display: block;
  font-size: clamp(72px, 6.2vw, 104px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
  color: var(--white);
}

.nav-overlay-menu a.active,
.nav-overlay-menu a:hover {
  color: var(--accent);
}

.nav-overlay-contact {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(210px, auto);
  gap: 84px;
  max-width: 640px;
  color: rgba(250, 250, 250, 0.82);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.nav-overlay-contact div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-overlay-contact a {
  width: max-content;
  border-bottom: 1px solid rgba(250, 250, 250, 0.65);
}

.nav-burger.active {
  z-index: 1003;
}

.nav-burger.active .burger-bar.top {
  transform: rotate(45deg);
}

.nav-burger.active .burger-bar.bot {
  transform: rotate(-45deg);
}

.home-intro-section {
  position: relative;
  min-height: 240vh;
  padding: 0;
  z-index: 3;
}

.home-intro-copy {
  position: sticky;
  top: 0;
  min-height: 100vh;
  max-width: 1780px;
  width: 100%;
  padding: 18vh 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  column-gap: 0.22em;
  row-gap: 0;
  font-size: clamp(42px, 4.45vw, 76px);
  line-height: 1.28;
  text-align: center;
  color: rgb(120, 120, 120);
}

.home-intro-copy span {
  color: rgb(120, 120, 120);
  transition: color 0.08s linear;
}

.services-section {
  position: relative;
  z-index: 4;
  padding: 130px 0 150px;
}

.services-section .section-inner {
  max-width: none;
  width: min(100% - 128px, 1780px);
  grid-template-columns: 470px minmax(0, 1fr);
  gap: 58px;
}

.services-section .section-label,
.projects-section .section-label,
.articles-section .section-label {
  justify-self: start;
  align-self: start;
  font-size: 18px;
  text-transform: uppercase;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  grid-column: 1 / -1;
}

.service-item {
  position: relative;
  min-height: 180px;
  height: auto;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 52px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(250, 250, 250, 0.35);
  cursor: pointer;
}

.service-preview {
  width: 390px;
  height: 178px;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-18px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy h3 {
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.08;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.service-copy p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  color: var(--gray);
  font-size: clamp(17px, 1.35vw, 26px);
  line-height: 1.35;
  font-weight: 600;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.service-arrow {
  justify-self: end;
  position: relative;
  width: 42px;
  height: 42px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-arrow::before,
.service-arrow::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  background: var(--accent);
}

.service-arrow::before {
  width: 36px;
  height: 5px;
  transform: rotate(45deg);
  transform-origin: right center;
  border-radius: 999px;
}

.service-arrow::after {
  width: 24px;
  height: 24px;
  border-right: 5px solid var(--accent);
  border-bottom: 5px solid var(--accent);
  background: transparent;
}

.service-item:first-child .service-preview,
.service-item:hover .service-preview,
.service-item:focus-within .service-preview {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.service-item:first-child .service-copy p,
.service-item:hover .service-copy p,
.service-item:focus-within .service-copy p {
  max-height: 92px;
  opacity: 1;
  margin-top: 20px;
}

.service-item:first-child .service-arrow,
.service-item:hover .service-arrow,
.service-item:focus-within .service-arrow {
  opacity: 1;
  transform: translate(8px, 8px);
}

.services-cta {
  display: none;
}

.projects-section {
  position: relative;
  z-index: 4;
  padding: 0 0 150px;
}

.projects-section .section-inner,
.articles-section .section-inner {
  max-width: none;
  width: min(100% - 128px, 1780px);
  align-items: stretch;
}

.home-projects-grid {
  overflow: visible;
}

.home-projects-grid .projects-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  transform: none !important;
}

.home-projects-grid .project-card {
  width: 100%;
  height: auto;
  aspect-ratio: 1.03 / 1;
  border-radius: 6px;
  background: #050505;
}

.home-projects-grid .project-card .project-title {
  display: flex;
  align-items: flex-end;
  min-height: 55%;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-projects-grid .project-card:hover .project-title,
.home-projects-grid .project-card:focus-visible .project-title {
  opacity: 1;
  transform: translateY(0);
}

.home-projects-grid .project-card .project-title h3 {
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 500;
}

.articles-section {
  position: relative;
  z-index: 4;
  padding: 0 0 150px;
}

.articles-grid {
  gap: 60px;
}

.contact-section {
  position: relative;
  z-index: 5;
  padding: 120px 0 140px;
  margin-bottom: -120px;
  background: var(--bg);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.contact-section .contact-marquee {
  display: none;
}

.contact-section .section-inner {
  max-width: none;
  width: min(100% - 128px, 1780px);
}

.contact-layout {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 90px;
}

.contact-info-col {
  order: 2;
  width: 100%;
  align-items: stretch;
}

.contact-info-col h2,
.social-links {
  display: none;
}

.contact-details {
  gap: 42px;
  text-align: left;
}

.contact-details > div {
  border: 1px solid rgba(250, 250, 250, 0.28);
  min-height: 150px;
  padding: 28px 34px;
}

.contact-details .detail-label {
  color: var(--white);
  font-size: 26px;
  letter-spacing: 0;
  margin-bottom: 34px;
}

.contact-details .detail-value {
  color: var(--gray);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

.contact-form-col {
  order: 1;
  width: 100%;
}

.contact-form-col::before {
  content: "Apapun tujuan brand kamu, Vaya bisa membantu";
  display: block;
  max-width: 1000px;
  margin-bottom: 72px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 88px);
  line-height: 1.35;
  font-weight: 400;
}

.contact-form {
  gap: 42px;
}

.contact-form input,
.contact-form textarea {
  font-size: 24px;
  padding: 18px 0;
}

.contact-form button {
  width: 260px;
  height: 52px;
}

.site-footer {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  padding: 170px 0 330px;
}

.footer-inner {
  max-width: none;
  width: min(100% - 232px, 1208px);
}

.footer-main {
  align-items: flex-start;
}

.footer-left .brand {
  display: none;
}

.footer-left::before {
  content: "CONTACT";
  display: block;
  margin-bottom: 98px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.footer-left .address,
.footer-right .footer-links a,
.footer-bottom .copyright {
  color: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

.footer-right {
  align-items: flex-end;
  justify-content: flex-end;
  gap: 110px;
}

.footer-right .footer-links:first-child {
  display: none;
}

.footer-right .footer-links {
  flex-direction: row;
  align-items: flex-end;
  gap: 74px;
}

.footer-right .footer-links a {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.footer-bottom {
  padding-top: 20px;
}

.footer-marquee {
  padding: 0;
  bottom: -18px;
}

.footer-marquee .marquee-track {
  position: relative;
  display: flex;
  gap: 0;
  width: max-content;
}

.footer-marquee span {
  color: #111;
  -webkit-text-stroke: 0;
  font-size: clamp(160px, 28vw, 430px);
  letter-spacing: 0;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .nav-overlay-shell,
  .services-section .section-inner,
  .projects-section .section-inner,
  .articles-section .section-inner,
  .contact-section .section-inner {
    width: min(100% - 80px, 730px);
  }

  .nav-overlay-contact {
    gap: 36px;
    max-width: 560px;
  }

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

  .service-item {
    grid-template-columns: 250px minmax(0, 1fr) 50px;
    gap: 30px;
  }

  .service-preview {
    width: 250px;
    height: 150px;
  }

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

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

  .footer-inner {
    width: min(100% - 80px, 730px);
  }
}

@media (max-width: 809px) {
  .nav-overlay-shell {
    width: calc(100% - 48px);
    padding: 28px 0 48px;
  }

  .nav-overlay-logo {
    top: 28px;
  }

  .nav-overlay-menu a {
    font-size: clamp(48px, 15vw, 78px);
  }

  .nav-overlay-contact {
    left: 0;
    right: 0;
    bottom: 46px;
    grid-template-columns: 1fr;
    gap: 22px;
    font-size: 16px;
  }

  .home-intro-section {
    min-height: 220vh;
  }

  .home-intro-copy {
    padding: 14vh 24px 0;
    font-size: clamp(31px, 9vw, 48px);
  }

  .services-section,
  .projects-section,
  .articles-section {
    padding-bottom: 100px;
  }

  .services-section .section-inner,
  .projects-section .section-inner,
  .articles-section .section-inner,
  .contact-section .section-inner {
    width: calc(100% - 48px);
  }

  .service-item {
    grid-template-columns: 1fr 34px;
    gap: 20px;
    padding: 28px 0;
  }

  .service-preview {
    grid-column: 1 / -1;
    width: 100%;
    height: 190px;
  }

  .service-copy h3 {
    font-size: 28px;
  }

  .service-copy p {
    font-size: 16px;
  }

  .service-arrow {
    width: 30px;
    height: 30px;
  }

  .service-arrow::before {
    width: 28px;
    height: 4px;
  }

  .service-arrow::after {
    width: 18px;
    height: 18px;
    border-right-width: 4px;
    border-bottom-width: 4px;
  }

  .home-projects-grid .projects-track,
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-section {
    padding: 90px 0 120px;
    margin-bottom: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .contact-form-col::before {
    margin-bottom: 48px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .contact-details > div {
    min-height: 130px;
    padding: 24px;
  }

  .contact-details .detail-label,
  .contact-details .detail-value,
  .contact-form input,
  .contact-form textarea {
    font-size: 18px;
  }

  .site-footer {
    min-height: 86vh;
    padding: 125px 0 210px;
  }

  .footer-inner {
    width: calc(100% - 48px);
  }

  .footer-main,
  .footer-right .footer-links {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
    gap: 28px;
  }

  .footer-left::before {
    margin-bottom: 46px;
  }

  .footer-left .address,
  .footer-right .footer-links a,
  .footer-bottom .copyright {
    font-size: 14px;
  }
}

/* ==========================================================================
   FINAL FOOTER REFERENCE OVERRIDE
   ========================================================================== */

.site-footer {
  min-height: 1013px;
  padding: 160px 0 0;
  background: linear-gradient(112deg, #d9469e 0%, #81229a 44%, #12008f 100%);
  justify-content: flex-start;
  overflow: hidden;
}

.footer-inner {
  width: min(100% - 232px, 1720px);
  max-width: 1720px;
  padding: 0;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(260px, 0.75fr) minmax(500px, 1.45fr);
  gap: 80px;
  align-items: end;
  width: 100%;
}

.footer-left {
  display: block;
}

.footer-left::before {
  content: "CONTACT";
  display: block;
  margin: 0 0 108px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.footer-left .brand {
  display: none;
}

.footer-left .address {
  max-width: 380px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 400;
}

.footer-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-contact-lines a {
  width: max-content;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.footer-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
}

.footer-right .footer-links:first-child {
  display: none;
}

.footer-right .footer-links {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 92px;
  width: 100%;
}

.footer-right .footer-links a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  text-transform: lowercase;
}

.footer-right .footer-links a span {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.footer-right .footer-links a span img,
.footer-right .footer-links a span svg {
  display: block;
}

.footer-bottom {
  padding: 20px 0 0;
  width: 100%;
}

.footer-bottom .copyright {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.footer-marquee {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 100%;
  overflow: visible;
  padding: 0;
  z-index: 1;
}

.footer-marquee .marquee-track {
  position: relative;
  display: flex;
  gap: 0;
  width: max-content;
  animation: footerMarquee 60s linear infinite;
}

.footer-marquee span {
  color: #111;
  -webkit-text-stroke: 0;
  font-size: clamp(380px, 34vw, 680px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

@media (min-width: 810px) and (max-width: 1439px) {
  .site-footer {
    min-height: 820px;
    padding-top: 130px;
  }

  .footer-inner {
    width: min(100% - 80px, 980px);
  }

  .footer-main {
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 42px;
  }

  .footer-left .address,
  .footer-contact-lines a,
  .footer-right .footer-links a {
    font-size: 14px;
  }

  .footer-right .footer-links {
    gap: 44px;
  }

  .footer-marquee {
    bottom: -30px;
  }
}

@media (max-width: 809px) {
  .site-footer {
    min-height: 760px;
    padding-top: 34px;
  }

  .footer-inner {
    width: calc(100% - 48px);
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .footer-left::before {
    margin-bottom: 42px;
    font-size: 14px;
  }

  .footer-left .address,
  .footer-contact-lines a,
  .footer-right .footer-links a {
    font-size: 14px;
  }

  .footer-contact-lines {
    gap: 18px;
  }

  .footer-right {
    width: 100%;
  }

  .footer-right .footer-links {
    gap: 22px;
    justify-content: space-between;
  }

  .footer-right .footer-links a span {
    font-size: 14px;
  }

  .footer-bottom {
    padding-top: 30px;
  }

  .footer-bottom .copyright {
    font-size: 14px;
  }

  .footer-marquee {
    bottom: -20px;
  }

  .footer-marquee span {
    font-size: clamp(240px, 52vw, 360px);
  }
}
