/* ===========================
   RESET & ROOT VARIABLES
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #0a0a0a;
  --offblack:  #111111;
  --darkgray:  #1a1a1a;
  --midgray:   #404040;
  --lightgray: #888888;
  --offwhite:  #f2f2f0;
  --white:     #ffffff;
  --accent:    #e8e8e5;
  --border:    rgba(255,255,255,0.08);
  --wa-green:  #25d366;

  --font-display:   'Anton', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-mid:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

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

@media (max-width: 1024px) {
  body { cursor: auto; }
}

/* ===========================
   SCROLL PROGRESS BAR
=========================== */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, rgba(255,255,255,0.3), var(--white));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===========================
   NOISE TEXTURE OVERLAY
=========================== */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ===========================
   CUSTOM CURSOR
=========================== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}
.cursor-dot.hovering {
  width: 4px; height: 4px;
  background: var(--white);
}
.cursor-ring.hovering {
  width: 48px; height: 48px;
  border-color: rgba(255,255,255,0.8);
}

/* ===========================
   NAVIGATION
=========================== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
  transition: backdrop-filter 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo span { color: var(--lightgray); font-weight: 300; }
.nav-links {
  display: flex; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lightgray);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 10px 24px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, color 0.25s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-cta:hover { background: var(--offwhite); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 490;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-condensed);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu a:hover { color: var(--lightgray); transform: translateX(8px); }
.mobile-close {
  position: absolute; top: 28px; right: 60px;
  font-size: 28px; color: var(--white);
  cursor: pointer;
  font-family: var(--font-condensed);
}

/* ===========================
   HERO
=========================== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(100% / 12 - 1px),
    rgba(255,255,255,0.025) calc(100% / 12 - 1px),
    rgba(255,255,255,0.025) calc(100% / 12)
  );
  pointer-events: none;
  transition: transform 0.3s ease;
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lightgray);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-name .line-2 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.45);
}

.hero-bottom {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-title-block { flex: 1; }
.hero-title {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-subtitle {
  font-size: 15px;
  color: var(--lightgray);
  margin-top: 6px;
  max-width: 400px;
  line-height: 1.55;
}

.hero-stats-row {
  display: flex;
  gap: 40px;
  align-items: flex-end;
}
.hero-counter {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 300;
  color: var(--lightgray);
  letter-spacing: 0.08em;
  text-align: right;
  line-height: 1.4;
}
.hero-counter strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lightgray);
  flex-shrink: 0;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ===========================
   SECTION DIVIDER
=========================== */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
  margin: 0 60px;
}

/* ===========================
   SHARED SECTION STYLES
=========================== */
.section-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lightgray);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--lightgray);
}
.section-heading {
  font-family: var(--font-condensed);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.section-intro {
  font-size: 14px;
  color: var(--lightgray);
  max-width: 280px;
  line-height: 1.6;
  text-align: right;
}

/* ===========================
   ABOUT
=========================== */
#about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lightgray);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.about-label::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--lightgray);
}

.about-heading {
  font-family: var(--font-condensed);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.about-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--lightgray);
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}

.about-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.about-disciplines span {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lightgray);
  border: 1px solid var(--border);
  padding: 6px 16px;
  transition: border-color 0.3s, color 0.3s;
}
.about-disciplines span:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* ===========================
   SERVICES
=========================== */
#services {
  padding: 100px 60px;
  background: var(--offblack);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--offblack);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: var(--darkgray); }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--midgray);
  margin-bottom: 32px;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--lightgray); }
.service-name {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.service-card:hover .service-desc { color: rgba(255,255,255,0.7); }
.service-arrow {
  position: absolute; bottom: 40px; right: 40px;
  font-size: 20px; color: var(--midgray);
  transition: transform 0.3s, color 0.3s;
}
.service-card:hover .service-arrow {
  transform: translate(4px, -4px);
  color: var(--white);
}

/* ===========================
   PORTFOLIO
=========================== */
#portfolio {
  padding: 100px 60px;
}

/* Filter buttons */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lightgray);
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.filter-btn.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.4s, transform 0.4s;
}
.portfolio-card.hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

/* Image wrapper (shared with lightbox items) */
.img-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--darkgray);
  cursor: none;
  aspect-ratio: 4 / 3;
}
@media (max-width: 1024px) {
  .img-wrapper { cursor: pointer; }
}
.img-wrapper::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 24px;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}
.img-wrapper:hover::after { opacity: 1; }
.img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition-mid), filter 0.4s ease;
  filter: grayscale(15%);
}
.img-wrapper:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Placeholder */
.placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: var(--darkgray);
  border: 1px dashed rgba(255,255,255,0.1);
  color: var(--midgray);
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  min-height: 220px;
}
.placeholder svg { opacity: 0.3; }
.placeholder-label { opacity: 0.6; font-size: 11px; max-width: 140px; line-height: 1.5; }

/* Video thumb play button */
.video-thumb { cursor: none; }
@media (max-width: 1024px) { .video-thumb { cursor: pointer; } }
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: background 0.3s;
}
.video-thumb:hover .play-overlay { background: rgba(0,0,0,0.2); }
.play-btn {
  width: 56px; height: 56px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.video-thumb:hover .play-btn {
  transform: scale(1.1);
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Portfolio card info */
.portfolio-card-info {
  padding: 16px 0 8px;
}
.portfolio-cat-tag {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--midgray);
  display: block;
  margin-bottom: 6px;
}
.portfolio-card-title {
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.portfolio-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  display: none; /* shown on hover via JS */
}

.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--midgray);
  font-family: var(--font-condensed);
  letter-spacing: 0.08em;
}
.portfolio-empty a { color: var(--lightgray); text-decoration: underline; }

/* ===========================
   CLIENTS
=========================== */
#clients {
  padding: 100px 60px;
  background: var(--offblack);
}
.clients-scroll {
  overflow: hidden;
  position: relative;
  margin-top: 48px;
}
.clients-scroll::before,
.clients-scroll::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2;
}
.clients-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--offblack), transparent);
}
.clients-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--offblack), transparent);
}
.clients-track {
  display: flex;
  animation: scrollTrack 22s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-item {
  padding: 0 60px;
  display: flex; align-items: center; justify-content: center;
  min-width: 200px;
}
.client-name {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  transition: color 0.3s;
}
.client-item:hover .client-name { color: var(--white); }
.client-separator {
  font-size: 28px; color: rgba(255,255,255,0.08);
  display: flex; align-items: center;
}

/* ===========================
   CONTACT
=========================== */
#contact {
  padding: 140px 60px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#contact::before {
  content: 'CONTACT';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 20vw, 280px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}
.contact-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lightgray);
  margin-bottom: 24px;
  position: relative;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 48px;
  position: relative;
}
.contact-heading span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
}
.contact-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin: 0 auto 56px;
  line-height: 1.7;
  position: relative;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 32px;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.3s, border-color 0.3s, color 0.3s,
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-link:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.contact-link-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.contact-link-primary:hover { background: var(--offwhite); }

/* Social links */
.contact-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lightgray);
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
}
.social-link:hover { color: var(--white); transform: translateY(-2px); }

/* ===========================
   FOOTER
=========================== */
footer {
  padding: 32px 60px;
  background: var(--offblack);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-name {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-copy {
  font-size: 12px;
  color: var(--midgray);
  letter-spacing: 0.04em;
}

/* ===========================
   FLOATING WHATSAPP BUTTON
=========================== */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  text-decoration: none;
  z-index: 400;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: rgba(0,0,0,0.85);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   LIGHTBOXES
=========================== */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.25s ease;
}
.lightbox-overlay.open { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  animation: scaleIn 0.3s ease;
}
@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-video .video-lightbox-wrap {
  width: min(90vw, 1000px);
  aspect-ratio: 16 / 9;
  animation: scaleIn 0.3s ease;
}
.lightbox-video iframe {
  width: 100%;
  height: 100%;
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  z-index: 9001;
  transition: color 0.2s;
  background: none;
  border: none;
}
.lightbox-close:hover { color: var(--lightgray); }
.lightbox-label {
  position: absolute; bottom: 28px;
  font-family: var(--font-condensed);
  font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--lightgray);
}

/* ===========================
   ANIMATIONS & REVEALS
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-0 { transition-delay: 0s; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Magnetic button base */
.magnetic {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-close { right: 32px; }

  #hero { padding: 0 32px 64px; }
  .section-divider { margin: 0 32px; }
  #about { padding: 80px 32px; grid-template-columns: 1fr; gap: 48px; }
  #services { padding: 80px 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  #portfolio { padding: 80px 32px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  #clients { padding: 80px 32px; }
  #contact { padding: 100px 32px; }
  footer { padding: 28px 32px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-intro { text-align: left; max-width: 100%; }
  .wa-float { bottom: 24px; right: 24px; }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 640px) {
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .hero-stats-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .hero-counter { text-align: left; }
  .hero-counter strong { font-size: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 11px; }
  .contact-links { flex-direction: column; align-items: center; }
  .contact-link { width: 100%; max-width: 300px; justify-content: center; }
  footer { flex-direction: column; text-align: center; gap: 8px; }
}
