/* ==========================================================================
   HOUSE OF YELLOW (HOY) - MASTER STYLESHEET (DARK MODE)
   ========================================================================== */

:root {
  --bg-primary: #0c0c0d;
  --bg-secondary: #141416;
  --bg-tertiary: #1c1c1f;
  --bg-card: #18181b;
  --accent-yellow: #f2efa3;
  --accent-yellow-glow: rgba(242, 239, 163, 0.25);
  --text-primary: #ffffff;
  --text-secondary: #a8a8a5;
  --text-muted: #737370;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Fluid type scale: clamped so text never balloons on wide screens nor shrinks to unreadable on phones */
  --fs-tag: clamp(10px, 0.7vw, 11px);
  --fs-button: clamp(11px, 0.8vw, 12px);
  --fs-eyebrow: clamp(11px, 0.85vw, 13px);
  --fs-small: clamp(12px, 0.85vw, 13px);
  --fs-body: clamp(14px, 1vw, 16px);
  --fs-card-title: clamp(15px, 1.05vw, 17px);
  --fs-lead: clamp(15px, 1.15vw, 18px);
  --fs-h3: clamp(20px, 1.75vw, 26px);
  --fs-h2: clamp(24px, 2.3vw, 34px);
  --fs-counter: clamp(26px, 2.4vw, 36px);
  --counter-line: clamp(32px, 2.9vw, 44px);
}

/* ==========================================================================
   RESETS & GLOBAL
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-family) !important;
  font-size: 16px;
  line-height: 1.5;
  /* clip, not hidden: "hidden" turns body into a scroll container, which
     interferes with the pinned/stacked sections */
  overflow-x: clip;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent-yellow);
  color: #0c0c0d;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--accent-yellow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Noise overlay */
.grainBackground, #pageContainer .blocks .grainBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  /* grain generated in the file itself, no external image */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.12;
}

.contentWrapper {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80px;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

header.scrolled {
  background: rgba(12, 12, 13, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

header .headerBar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 4vw;
}

header .headerBar .contentWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Left Navigation */
header .headerBar .left {
  flex: 1;
  display: flex;
  align-items: center;
}

header .headerBar .left .mainMenuWrapper ul {
  display: flex;
  align-items: center;
  gap: 2.2vw;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .headerBar .left .mainMenuWrapper ul li a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  opacity: 0.82;
  transition: opacity 0.25s ease;
}

header .headerBar .left .mainMenuWrapper ul li a:hover {
  opacity: 1;
}

/* Home active underline bar */
header .headerBar .left .mainMenuWrapper ul li.current-menu-item a,
header .headerBar .left .mainMenuWrapper ul li:first-child a {
  opacity: 1;
}

header .headerBar .left .mainMenuWrapper ul li.current-menu-item a::after,
header .headerBar .left .mainMenuWrapper ul li:first-child a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
}

/* Center Logo: HOY + HOUSE OF YELLOW in white */
header .headerBar .center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .headerBar .center .logo a {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 34px;
}

header .headerBar .center .logo svg {
  display: block;
  width: 100px;
  height: 34px;
}

header .headerBar .center .logo svg path,
header .headerBar .center .logo svg rect {
  fill: #ffffff !important;
  transition: fill 0.3s ease;
}

header .headerBar .center .logo a:hover svg path {
  fill: var(--accent-yellow) !important;
}

header .headerBar .center .logo .absoluteSVG {
  position: absolute;
  left: 0;
  top: 0;
  width: 159px;
  height: 34px;
  pointer-events: none;
}

header .headerBar .center .logo .absoluteSVG svg.smallLogo {
  position: absolute;
  left: 0;
  top: 0;
  width: 159px;
  height: 34px;
}

/* Right Header: Socials + Connect Button */
header .headerBar .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.8vw;
}

header .headerBar .right .socials {
  display: flex;
  align-items: center;
  gap: 1.2vw;
}

header .headerBar .right .socials a.socialLink {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

header .headerBar .right .socials a.socialLink:hover {
  opacity: 1;
  transform: translateY(-1px);
}

header .headerBar .right .buttons .connectBtn,
header .headerBar .right .buttons .button {
  background: var(--accent-yellow);
  color: #0c0c0d !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.6rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

header .headerBar .right .buttons .connectBtn:hover,
header .headerBar .right .buttons .button:hover {
  background: #ffffff;
  color: #0c0c0d !important;
  box-shadow: 0 0 25px var(--accent-yellow-glow);
  transform: translateY(-2px);
}

header .headerBar .right .buttons .connectBtn svg,
header .headerBar .right .buttons .button svg path {
  stroke: #0c0c0d !important;
  fill: none !important;
}

/* Sound button & Hamburger on desktop */
header .headerBar .right .soundButton,
header .headerBar .right .headerSoundToggle {
  display: none !important;
}

header .headerBar .right #hamburger {
  display: none; /* Only on mobile */
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

/* icon only - the word "MENÚ" is hidden (the bars are spans inside .hamburgerIcon) */
header .headerBar .right #hamburger > span {
  display: none !important;
}

header .headerBar .right #hamburger .hamburgerIcon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 6px 0;
}

/* Social icons in grey rather than white */
header .headerBar .right .socials a.socialLink {
  opacity: 0.55;
}

header .headerBar .right .socials a.socialLink:hover {
  opacity: 1;
}

header .headerBar .right #hamburger .hamburgerIcon .bar {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Hide legacy hamburgerMenu in header bar by default, show when open */
header .hamburgerMenu {
  display: none !important;
}

header.open .hamburgerMenu {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* fully opaque so the header underneath (logo, button, bars) does not show through */
  background: #0a0a0b;
  backdrop-filter: blur(25px);
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 96px 24px 32px;
}

/* Close button: the menu covers the header, so the hamburger itself is out of reach */
.hamburgerMenu .menuClose {
  display: none;
}

header.open .hamburgerMenu .menuClose {
  display: block;
  position: absolute;
  top: 22px;
  right: 20px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

header.open .hamburgerMenu .menuClose .bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  margin: -1px 0 0 -12px;
  background: #ffffff;
  border-radius: 1px;
  transition: background 0.25s ease;
}

header.open .hamburgerMenu .menuClose .bar:first-child {
  transform: rotate(45deg);
}

header.open .hamburgerMenu .menuClose .bar:last-child {
  transform: rotate(-45deg);
}

header.open .hamburgerMenu .menuClose:hover .bar {
  background: var(--accent-yellow);
}

header.open .hamburgerMenu .innerContainer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(18px, 4vw, 30px);
  width: 100%;
  max-width: 440px;
  max-height: 100%;
  overflow-y: auto;
}

header.open .hamburgerMenu .mobileMenu ul {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1.2vw, 10px);
}

/* each item is a mask: app.js slides the link up from underneath it */
header.open .hamburgerMenu .mobileMenu ul li {
  overflow: hidden;
}

header.open .hamburgerMenu .mobileMenu ul li a {
  display: inline-block;
  font-size: clamp(26px, 8vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

header.open .hamburgerMenu .mobileMenu ul li a:hover {
  color: var(--accent-yellow);
}

/* Social links, in grey */
header.open .hamburgerMenu .menuSocials {
  order: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #8b8b8f;
}

header.open .hamburgerMenu .menuSocials a.socialLink {
  display: inline-flex;
  color: inherit;
  transition: color 0.25s ease;
}

header.open .hamburgerMenu .menuSocials a.socialLink:hover {
  color: #ffffff;
}

header.open .hamburgerMenu .footerCols {
  order: 2;
  display: grid;
  /* contact column is wider so the email fits on one line */
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px 18px;
  text-align: left;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(14px, 3vw, 20px);
}

header.open .hamburgerMenu .footerCols .colTitle {
  color: var(--accent-yellow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

header.open .hamburgerMenu .footerCols .text,
header.open .hamburgerMenu .footerCols .text p,
header.open .hamburgerMenu .footerCols .text a {
  color: var(--text-secondary);
  /* 13px keeps the email on a single line inside its column */
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

header.open .hamburgerMenu .footerCols .text a:hover {
  color: var(--accent-yellow);
}

/* ==========================================================================
   HERO SECTION (headerBigBlock) - 100% FULL BLEED VIEWPORT
   ========================================================================== */
.headerBigBlock {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: #0c0c0d;
}

.headerBigBlock .innerAnimContainer {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
  display: block;
}

/* Background video covers 100% of viewport */
.headerBigBlock .background.playerBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.headerBigBlock .background.playerBackground::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 12, 13, 0.32) 0%, rgba(12, 12, 13, 0.52) 100%);
  z-index: 2;
}

.headerBigBlock .background .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.04);
}

/* Left Hero Content */
.headerBigBlock .leftContent {
  position: absolute;
  left: 4vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: 32vw;
  z-index: 10;
  text-align: left;
}

.headerBigBlock .leftContent h1.text.smaller {
  color: var(--accent-yellow) !important;
  font-size: 0.95vw;
  font-weight: 600;
  margin-bottom: 0.8vw;
  letter-spacing: 0.05em;
  text-transform: none;
}

.headerBigBlock .leftContent .smallTitle {
  font-size: 2.1vw;
  font-weight: 500;
  line-height: 1.24;
  color: #ffffff !important;
  letter-spacing: -0.01em;
}

/* Right Hero Content */
.headerBigBlock .rightContent {
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: 25vw;
  z-index: 10;
  text-align: right;
}

.headerBigBlock .rightContent .text.smaller p {
  font-size: 0.95vw;
  font-weight: 400;
  line-height: 1.55;
  color: #e0e0df !important;
}

/* Center Animated Cross Logo (H-O-Y) */
.headerBigBlock .centerContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22vw;
  height: 22vw;
  max-width: 320px;
  max-height: 320px;
  min-width: 230px;
  min-height: 230px;
  z-index: 10;
  display: block;
  pointer-events: none;
}

.headerBigBlock .centerContent .innerContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.headerBigBlock .centerContent .rotateContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  will-change: transform;
}

/* Invisible square over the middle cell: the four outer letters live under it, so when
   they collapse into the centre they are hidden and only the J (outside this layer,
   painted on top) stays visible. */
.headerBigBlock .centerContent .lettersLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  /* base layer is oversized so letters flying two cells out are still painted;
     the hole is a hair over one third, to swallow the antialiased edges */
  -webkit-mask-size: 500% 500%, 34.6% 34.6%;
  -webkit-mask-position: center, center;
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-composite: xor;
  /* without this the mask is clipped to the box and letters flying outside vanish */
  -webkit-mask-clip: no-clip;
  mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  mask-size: 500% 500%, 34.6% 34.6%;
  mask-position: center, center;
  mask-repeat: no-repeat, no-repeat;
  mask-composite: exclude;
  mask-clip: no-clip;
}

.headerBigBlock .centerContent .animContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  will-change: transform, filter;
}

.headerBigBlock .centerContent .animContainer[data-anim="o"] {
  transform-origin: 50% 50%;
}

.headerBigBlock .centerContent .animContainer svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible !important;
}

.headerBigBlock .centerContent .animContainer svg path {
  fill: #f2efa3 !important;
}

/* Bottom Elliptical Scroll Indicator */
.headerBigBlock .bottomContent {
  position: absolute;
  bottom: 2.8vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.headerBigBlock .bottomContent .animation {
  position: relative;
  width: 13vw;
  max-width: 200px;
  height: 4.8vw;
  max-height: 75px;
}

.headerBigBlock .bottomContent .animation .path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.headerBigBlock .bottomContent .animation .path svg {
  width: 100%;
  height: 100%;
}

.headerBigBlock .bottomContent .animation .path svg path {
  stroke: var(--accent-yellow) !important;
}

.headerBigBlock .bottomContent .animation .path:last-child svg path {
  fill: var(--accent-yellow) !important;
  stroke: none !important;
}

/* Optional soft animation for bottom scroll indicator */
.headerBigBlock .bottomContent .animation .path:nth-child(2) {
  animation: floatEllipse 6s ease-in-out infinite;
}

.headerBigBlock .bottomContent .animation .path:last-child {
  animation: pulseSparkle 3s ease-in-out infinite;
}

@keyframes floatEllipse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes pulseSparkle {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* ==========================================================================

/* ==========================================================================
   GLOBAL BUTTON SYSTEM (Fixed Marquees & Transitions)
   ========================================================================== */
.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  height: 2.8125vw !important;
  min-height: 44px !important;
  padding: 0 clamp(16px, 1.4vw, 24px) !important;
  border-radius: 9999px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  user-select: none !important;
  font-family: inherit !important;
  font-size: var(--fs-button) !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
  white-space: nowrap !important;
}

.button .label {
  display: inline-flex !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
  height: 100% !important;
}

.button .label .fixedLabel {
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
}

.button .label .innerLabel {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  transform: translateY(0) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.button .label .innerLabel:last-child {
  top: 100% !important;
}

.button:hover .label .innerLabel:first-child {
  transform: translateY(-100%) !important;
}

.button:hover .label .innerLabel:last-child {
  transform: translateY(-100%) !important;
}

.button .label .innerLabel .marquees,
.button .label .innerLabel .marqueeWrapper,
.button .label .innerLabel .marquee {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.button .label .innerLabel .itemsContainer {
  display: inline-flex !important;
  align-items: center !important;
}

.button .label .innerLabel .item {
  margin-right: 2.5vw !important;
}

.button .icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: clamp(8px, 0.8vw, 12px) !important;
  width: 1.1vw !important;
  min-width: 16px !important;
  height: 1.1vw !important;
  min-height: 16px !important;
  transition: transform 0.3s ease !important;
}

.button:hover .icon svg {
  transform: rotate(180deg) !important;
}

/* Button Variants in Dark Mode */
.button.dark {
  background: #18181b !important;
  color: #f2efa3 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.button.dark svg path {
  fill: #f2efa3 !important;
}
.button.dark:hover {
  background: #f2efa3 !important;
  color: #0c0c0d !important;
  border-color: #f2efa3 !important;
}
.button.dark:hover svg path {
  fill: #0c0c0d !important;
}

.button.light {
  background: #f2efa3 !important;
  color: #0c0c0d !important;
  border: 1px solid transparent !important;
}
.button.light svg path {
  fill: #0c0c0d !important;
}
.button.light:hover {
  background: #ffffff !important;
  color: #0c0c0d !important;
}

.button.outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}
.button.outline svg path {
  fill: #ffffff !important;
}
.button.outline:hover {
  background: #f2efa3 !important;
  color: #0c0c0d !important;
  border-color: #f2efa3 !important;
}
.button.outline:hover svg path {
  fill: #0c0c0d !important;
}

/* ==========================================================================
   ABOUT & WORK SECTION (Section 1)
   ========================================================================== */
.aboutWorkBlock {
  /* no !important on position: ScrollTrigger sets position:fixed inline when it pins this */
  position: relative;
  background: #0c0c0d !important;
  color: #ffffff !important;
  width: 100vw !important;
  padding: 8vw 0 6vw !important;
  overflow: hidden !important;
}

.aboutWorkBlock .aboutSection {
  position: relative !important;
  margin-bottom: 8vw !important;
}

.aboutWorkBlock .aboutSection .cols {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 3vw !important;
  width: 100% !important;
}

.aboutWorkBlock .aboutSection .cols .col:first-child {
  width: 18vw !important;
  flex-shrink: 0 !important;
}

.aboutWorkBlock .aboutSection .cols .col:first-child .text {
  font-size: var(--fs-eyebrow) !important;
  font-weight: 500 !important;
  color: #a8a8a5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

.aboutWorkBlock .aboutSection .cols .col:nth-child(2) {
  width: 62vw !important;
  flex-grow: 1 !important;
}

.aboutWorkBlock .aboutSection .cols .col:nth-child(2) .normalTitle {
  font-size: var(--fs-h3) !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  color: #ffffff !important;
  margin-bottom: 2vw !important;
}

.aboutWorkBlock .aboutSection .cols .col:nth-child(2) .smallTitle {
  font-size: var(--fs-lead) !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: #f2efa3 !important;
  margin-bottom: 2.5vw !important;
}

.aboutWorkBlock .aboutSection .cols .col:nth-child(2) .buttons {
  display: flex !important;
  align-items: center !important;
  gap: 1.2vw !important;
}

.aboutWorkBlock .aboutSection .cols .col:last-child {
  width: 8vw !important;
  text-align: right !important;
  flex-shrink: 0 !important;
}

.aboutWorkBlock .aboutSection .cols .col:last-child .text {
  font-size: var(--fs-eyebrow) !important;
  font-family: monospace !important;
  color: #a8a8a5 !important;
}

.aboutWorkBlock .aboutSection .animation {
  position: absolute !important;
  right: 6vw !important;
  top: 65% !important;
  width: 14vw !important;
  height: 14vw !important;
  border-radius: 3vw !important;
  border: 1px solid rgba(242, 239, 163, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}

.aboutWorkBlock .aboutSection .animation .innerAnimation {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

.aboutWorkBlock .aboutSection .animation .svgWrapper {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.aboutWorkBlock .aboutSection .animation .svgWrapper svg path {
  fill: #f2efa3 !important;
}

/* Projects Section */
.aboutWorkBlock .projectsSection {
  position: relative !important;
  margin-top: 6vw !important;
}

.aboutWorkBlock .projectsSection .cols {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  margin-bottom: 4vw !important;
}

.aboutWorkBlock .projectsSection .cols .col:first-child {
  max-width: 55vw !important;
}

.aboutWorkBlock .projectsSection .cols .col:first-child .text {
  font-size: var(--fs-eyebrow) !important;
  font-weight: 500 !important;
  color: #a8a8a5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 1vw !important;
}

.aboutWorkBlock .projectsSection .cols .col:first-child .smallTitle {
  font-size: var(--fs-lead) !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: #ffffff !important;
}

.aboutWorkBlock .projectsSection .cols .col:last-child {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 1.5vw !important;
}

.aboutWorkBlock .projectsSection .cols .col:last-child .text {
  font-size: var(--fs-eyebrow) !important;
  font-family: monospace !important;
  color: #a8a8a5 !important;
}

/* Projects Grid - 3 Columns */
.aboutWorkBlock .projectsSection .projects {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2vw !important;
  width: 100% !important;
}

.aboutWorkBlock .projectsSection .projects .project {
  display: block !important;
  text-decoration: none !important;
  color: #ffffff !important;
  border-radius: 0.8vw !important;
  overflow: hidden !important;
  transition: transform 0.35s ease !important;
}

.aboutWorkBlock .projectsSection .projects .project:hover {
  transform: translateY(-8px) !important;
}

.aboutWorkBlock .projectsSection .projects .project .innerProject {
  display: block !important;
  width: 100% !important;
}

.aboutWorkBlock .projectsSection .projects .project .imageWrapper {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  position: relative !important;
  border-radius: 0.8vw !important;
  overflow: hidden !important;
  background: #18181b !important;
}

.aboutWorkBlock .projectsSection .projects .project .imageWrapper .innerImage {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.aboutWorkBlock .projectsSection .projects .project .imageWrapper video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.aboutWorkBlock .projectsSection .projects .project .imageWrapper .tags {
  position: absolute !important;
  top: 1.2vw !important;
  left: 1.2vw !important;
  display: flex !important;
  gap: 0.5vw !important;
  z-index: 2 !important;
}

.aboutWorkBlock .projectsSection .projects .project .imageWrapper .tags .tag {
  background: rgba(12, 12, 13, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  color: #f2efa3 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  font-size: var(--fs-tag) !important;
  font-weight: 500 !important;
  padding: 0.35em 0.9em !important;
  border-radius: 9999px !important;
  text-transform: uppercase !important;
}

.aboutWorkBlock .projectsSection .projects .project .imageWrapper .bottomButton {
  position: absolute !important;
  bottom: 1.2vw !important;
  left: 1.2vw !important;
  right: 1.2vw !important;
  z-index: 2 !important;
  opacity: 0 !important;
  transform: translateY(10px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.aboutWorkBlock .projectsSection .projects .project:hover .imageWrapper .bottomButton {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.aboutWorkBlock .projectsSection .projects .project .imageWrapper .bottomButton .button {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  background: rgba(12, 12, 13, 0.88) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
}

.aboutWorkBlock .projectsSection .projects .project .imageWrapper .bottomButton .button:hover {
  background: #f2efa3 !important;
  color: #0c0c0d !important;
}

.aboutWorkBlock .projectsSection .projects .project .projectContent {
  display: block !important;
  padding-top: 1.2vw !important;
}

.aboutWorkBlock .projectsSection .projects .project .projectContent .smallTitle {
  font-size: var(--fs-card-title) !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  display: block !important;
  margin-bottom: 0.8vw !important;
}

.aboutWorkBlock .projectsSection .projects .project .projectContent .divider {
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  margin-bottom: 0.8vw !important;
}

.aboutWorkBlock .projectsSection .projects .project .projectContent .bottomContent {
  display: flex !important;
  justify-content: space-between !important;
  font-size: var(--fs-small) !important;
  color: #a8a8a5 !important;
}

.aboutWorkBlock .projectsSection .projects .project .projectContent .bottomContent .row {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.2vw !important;
}

.aboutWorkBlock .projectsSection .projects .project .projectContent .bottomContent .info {
  color: #ffffff !important;
  font-weight: 500 !important;
}

/* Client Logos Marquee */
.aboutWorkBlock .logoSection {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  margin-top: clamp(48px, 6vw, 96px) !important;
  padding-block: clamp(20px, 2vw, 32px) !important;
  border-top: 1px solid var(--border-subtle) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.aboutWorkBlock .logoSection .marquees,
.aboutWorkBlock .logoSection .marqueeWrapper,
.aboutWorkBlock .logoSection .marquee {
  width: 100% !important;
  overflow: hidden !important;
}

.aboutWorkBlock .logoSection .marqueeScroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  animation: logoMarquee 60s linear infinite alternate;
}

.aboutWorkBlock .logoSection .itemsContainer {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: clamp(32px, 4vw, 72px) !important;
  padding-right: clamp(32px, 4vw, 72px) !important;
}

.aboutWorkBlock .logoSection .item {
  flex: 0 0 auto !important;
}

.aboutWorkBlock .logoSection .item .innerItem img {
  display: block !important;
  width: auto !important;
  height: clamp(22px, 2.2vw, 36px) !important;
  max-width: clamp(90px, 9vw, 150px) !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.aboutWorkBlock .logoSection .item:hover .innerItem img {
  opacity: 0.9;
}

@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% + 100vw)); }
}

/* ==========================================================================
   SERVICES SECTION (VideoIntroBlock, Smartphone Chassis, Odometers)
   ========================================================================== */
.servicesBlock {
  position: relative;
  background: #0c0c0d !important;
  color: #ffffff !important;
  width: 100vw !important;
  padding: 8vw 0 6vw !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.servicesBlock .videoIntroBlock {
  margin-bottom: 6vw !important;
}

.servicesBlock .videoIntroBlock .cols {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 3vw !important;
  width: 100% !important;
}

.servicesBlock .videoIntroBlock .cols .col:first-child {
  width: 8vw !important;
  font-family: monospace !important;
  color: #a8a8a5 !important;
  font-size: var(--fs-eyebrow) !important;
  flex-shrink: 0 !important;
}

.servicesBlock .videoIntroBlock .cols .col:nth-child(2) {
  width: 54vw !important;
  flex-grow: 1 !important;
}

.servicesBlock .videoIntroBlock .cols .col:nth-child(2) .text.medium {
  font-size: var(--fs-eyebrow) !important;
  color: #a8a8a5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 1vw !important;
}

.servicesBlock .videoIntroBlock .cols .col:nth-child(2) .smallTitle {
  font-size: var(--fs-h3) !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  color: #ffffff !important;
}

.servicesBlock .videoIntroBlock .cols .col:last-child {
  width: 25vw !important;
  flex-shrink: 0 !important;
}

.servicesBlock .videoIntroBlock .cols .col:last-child .text.medium {
  font-size: var(--fs-eyebrow) !important;
  color: #f2efa3 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 0.8vw !important;
}

.servicesBlock .videoIntroBlock .cols .col:last-child .text:not(.medium) {
  font-size: var(--fs-body) !important;
  color: #a8a8a5 !important;
  line-height: 1.55 !important;
}

/* Video Block - Smartphone in Center, Odometers on Sides */
.servicesBlock .videoBlock {
  position: relative !important;
  width: 100% !important;
}

.servicesBlock .videoBlock .scrollContainer {
  position: relative !important;
  width: 100% !important;
  padding: 4vw 0 !important;
}

.servicesBlock .videoBlock .scrollContainer .stickyWrapper .cols {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

.servicesBlock .videoBlock .scrollContainer .stickyWrapper .cols .col:first-child {
  width: 26vw !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4vw !important;
}

.servicesBlock .videoBlock .scrollContainer .stickyWrapper .cols .col:nth-child(2) {
  width: 38vw !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.servicesBlock .videoBlock .scrollContainer .stickyWrapper .cols .col:last-child {
  width: 26vw !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  text-align: right !important;
  gap: 4vw !important;
}

/* Smartphone Mockup Frame */
.servicesBlock .videoBlock .videoContainer {
  position: relative !important;
  width: 28.5vw !important;
  height: 52vw !important;
  max-width: 390px !important;
  max-height: 710px !important;
  border-radius: 3.5vw !important;
  background: #000000 !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
  cursor: pointer !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease !important;
}

.servicesBlock .videoBlock .videoContainer:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 30px rgba(242, 239, 163, 0.2) !important;
}

.servicesBlock .videoBlock .videoContainer:after {
  content: "" !important;
  position: absolute !important;
  top: -1.2vw !important;
  left: -1.2vw !important;
  width: calc(100% + 2.4vw) !important;
  height: calc(100% + 2.4vw) !important;
  border: 1px solid rgba(242, 239, 163, 0.5) !important;
  border-radius: 4.4vw !important;
  pointer-events: none !important;
  box-shadow: inset 0 0 15px rgba(242, 239, 163, 0.1) !important;
}

.servicesBlock .videoBlock .videoContainer .background {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 3.5vw !important;
  overflow: hidden !important;
}

.servicesBlock .videoBlock .videoContainer .background video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: opacity 0.35s ease !important;
}

.servicesBlock .videoBlock .videoContainer .phoneInfo {
  position: absolute !important;
  top: 1.2vw !important;
  left: 0 !important;
  width: 100% !important;
  padding: 0 2.2vw !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

.servicesBlock .videoBlock .videoContainer .phoneInfo .timeZone {
  font-size: clamp(11px, 0.9vw, 14px) !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

.servicesBlock .videoBlock .videoContainer .phoneInfo .camera {
  position: absolute !important;
  top: 0.2vw !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 6.8vw !important;
  height: 1.8vw !important;
  background: #111113 !important;
  border-radius: 1.5vw !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.servicesBlock .videoBlock .videoContainer .phoneInfo .icons {
  display: flex !important;
  align-items: center !important;
}

.servicesBlock .videoBlock .videoContainer .phoneInfo .icons svg path {
  fill: #ffffff !important;
}

/* Counter / Odometer Lists */
.amountContainer {
  display: flex !important;
  flex-direction: column !important;
}

.amountContainer .text.medium {
  font-size: var(--fs-eyebrow) !important;
  font-weight: 500 !important;
  color: #a8a8a5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 0.4vw !important;
}

.amountContainer .amountWrapper {
  height: var(--counter-line) !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
  position: relative !important;
}

.amountContainer .amountWrapper .innerAmountWrapper {
  position: relative !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.amountContainer .amountWrapper .amount {
  height: var(--counter-line) !important;
  min-height: 0 !important;
  max-height: none !important;
  line-height: var(--counter-line) !important;
  font-size: var(--fs-counter) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  white-space: nowrap !important;
}

/* ==========================================================================
   HOW WE ROLL SECTION (Intro & Horizontal Cards)
   ========================================================================== */
.howWeRollIntroBlock {
  padding: 8vw 0 4vw !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.howWeRollIntroBlock .cols {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 3vw !important;
  width: 100% !important;
}

.howWeRollIntroBlock .cols .col:first-child {
  width: 18vw !important;
  font-size: var(--fs-eyebrow) !important;
  font-weight: 500 !important;
  color: #a8a8a5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  flex-shrink: 0 !important;
}

.howWeRollIntroBlock .cols .col:nth-child(2) {
  width: 62vw !important;
  flex-grow: 1 !important;
}

.howWeRollIntroBlock .cols .col:nth-child(2) .smallTitle {
  font-size: var(--fs-h3) !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  color: #ffffff !important;
  margin-bottom: 2vw !important;
}

.howWeRollIntroBlock .cols .col:nth-child(2) .text.medium {
  font-size: var(--fs-body) !important;
  line-height: 1.6 !important;
  color: #a8a8a5 !important;
}

.howWeRollIntroBlock .cols .col:last-child {
  width: 8vw !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 2vw !important;
  flex-shrink: 0 !important;
}

.howWeRollIntroBlock .cols .col:last-child .text {
  font-size: var(--fs-eyebrow) !important;
  font-family: monospace !important;
  color: #a8a8a5 !important;
}

/* How We Roll Items Block & The 4 Horizontal Videos (NEVER stacked in a column) */
.howWeRollItemsBlock {
  position: relative !important;
  width: 100% !important;
  padding: 4vw 0 8vw !important;
}

/* Each of the three service blocks is a full screen layer that the next one covers.
   These use sticky rather than a ScrollTrigger pin: their parent section is scaled and
   dimmed by the section stacking, and a transformed ancestor breaks position: fixed,
   which is what pinning relies on. Sticky is immune to that. */
.howWeRollItemsBlock .scrollItem {
  position: sticky !important;
  top: 0 !important;
  /* full bleed: break out of the wrapper padding so the background reaches both
     edges and nothing of the layer underneath shows down the sides */
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-bottom: 0 !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(40px, 5vw, 90px) 4vw !important;
  /* opaque background so it fully covers the layer underneath while sliding up */
  background: #0c0c0d !important;
}

/* z-index is set from app.js: pinning wraps each item in a spacer div, so
   nth-child selectors stop matching what you expect */

.howWeRollItemsBlock .scrollItem .innerContainer {
  width: 100% !important;
}

.howWeRollItemsBlock .scrollItem .innerContainer {
  text-align: center !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

.howWeRollItemsBlock .scrollItem .normalTitle {
  font-size: var(--fs-h2) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  margin-bottom: 1.5vw !important;
}

.howWeRollItemsBlock .scrollItem .itemText {
  font-size: var(--fs-body) !important;
  color: #a8a8a5 !important;
  max-width: min(640px, 100%) !important;
  margin: 0 auto 3vw !important;
  line-height: 1.6 !important;
}

/* Arrow buttons: they sit inside the title and right under the cards, so give them
   breathing room instead of letting them hug the text and the videos. */
.howWeRollItemsBlock .scrollItem .buttonWrapper {
  display: flex !important;
  justify-content: center !important;
  margin-top: clamp(24px, 2.6vw, 44px) !important;
  margin-bottom: clamp(24px, 2.6vw, 44px) !important;
}

.howWeRollItemsBlock .scrollItem .images .buttonWrapper {
  margin-bottom: 0 !important;
}

/* Other buttons across the page were tight against the text above them */
.aboutWorkBlock .aboutSection .cols .col:nth-child(2) .buttons {
  margin-top: clamp(18px, 1.8vw, 30px) !important;
}

.aboutWorkBlock .projectsSection .cols .col:last-child .buttons,
.howWeRollIntroBlock .cols .col:last-child .bottomButton,
.cultureQuoteAnimationBlock .cols .col:last-child .buttons {
  margin-top: clamp(16px, 1.6vw, 26px) !important;
}

.howWeRollItemsBlock .scrollItem .images {
  margin-top: 2.5vw !important;
  width: 100% !important;
}

.howWeRollItemsBlock .scrollItem .images .innerImages {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1.5vw !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
}

.howWeRollItemsBlock .scrollItem .images .imageWrapper {
  display: inline-block !important;
  width: 17vw !important;
  height: 22vw !important;
  max-width: 280px !important;
  max-height: 365px !important;
  border-radius: 0.8vw !important;
  overflow: hidden !important;
  position: relative !important;
  flex-shrink: 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.howWeRollItemsBlock .scrollItem .images .imageWrapper:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 15px 40px rgba(242, 239, 163, 0.2) !important;
}

.howWeRollItemsBlock .scrollItem .images .imageWrapper video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Cards that link out (TikTok) */
.howWeRollItemsBlock .scrollItem .images a.imageWrapper {
  display: block !important;
  cursor: pointer !important;
}

.howWeRollItemsBlock .scrollItem .images .tiktokBadge {
  position: absolute !important;
  left: 10px !important;
  bottom: 10px !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.35em 0.9em !important;
  border-radius: 9999px !important;
  background: rgba(12, 12, 13, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(8px) !important;
  color: #f2efa3 !important;
  font-size: var(--fs-tag) !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  transition: background 0.3s ease, color 0.3s ease !important;
}

.howWeRollItemsBlock .scrollItem .images a.imageWrapper:hover .tiktokBadge {
  background: #f2efa3 !important;
  color: #0c0c0d !important;
}

/* ==========================================================================
   CULTURE & KINETIC MARQUEE SECTION (Section 3)
   ========================================================================== */
.cultureQuoteAnimationBlock {
  position: relative;
  background: #0c0c0d !important;
  color: #ffffff !important;
  width: 100vw !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  padding: clamp(60px, 6vw, 110px) 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.cultureQuoteAnimationBlock .contentWrapper {
  width: 100% !important;
}

.cultureQuoteAnimationBlock .cols {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: clamp(32px, 4vw, 72px) !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}

.cultureQuoteAnimationBlock .cols .col:first-child {
  width: min(32vw, 420px) !important;
  flex-shrink: 0 !important;
}

/* DJ photo next to the text - swap dj-photo.svg for a real picture */
.cultureQuoteAnimationBlock .djPhoto {
  width: 100% !important;
  border-radius: clamp(16px, 1.6vw, 28px);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.cultureQuoteAnimationBlock .djPhoto img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* the little sparkle that used to sit in this column */
.cultureQuoteAnimationBlock .cols .col .animation {
  display: none !important;
}

.cultureQuoteAnimationBlock .cols .col:first-child .text {
  font-size: var(--fs-eyebrow) !important;
  font-weight: 500 !important;
  color: #a8a8a5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

.cultureQuoteAnimationBlock .cols .col:last-child {
  width: 78vw !important;
}

.cultureQuoteAnimationBlock .normalTitle {
  font-size: clamp(28px, 3.1vw, 48px) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  color: var(--accent-yellow) !important;
  margin-bottom: clamp(20px, 2vw, 34px) !important;
}

.cultureQuoteAnimationBlock .cols .col:last-child .buttons {
  display: flex !important;
  gap: 1.2vw !important;
}

/* Culture Kinetic Marquee */
.cultureQuoteAnimationBlock .animation {
  width: 100vw !important;
  overflow: hidden !important;
  padding: 2vw 0 !important;
}

.cultureQuoteAnimationBlock .animation .marquee {
  display: flex !important;
  white-space: nowrap !important;
  gap: 4vw !important;
  animation: cultureScroll 25s linear infinite !important;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* The footer sits still at the bottom of the screen and the last section slides up
   off it, uncovering it. app.js adds .footerSpacer so the page can scroll that far. */
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #070708;
  padding: clamp(26px, 2.6vw, 44px) 0 clamp(12px, 1.2vw, 18px) 0;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.footerSpacer {
  display: block;
  width: 100%;
  pointer-events: none;
}

/* Same clip as the hero, blurred and darkened so the text stays readable */
footer .footerVideo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

footer .footerVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* scaled up so the blurred edges never show */
  transform: scale(1.08);
  filter: blur(12px) brightness(0.5);
}

footer .footerVideoOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.74) 0%, rgba(7, 7, 8, 0.88) 100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

footer > *:not(.footerVideo) {
  position: relative;
  z-index: 1;
}

footer .logo {
  margin-bottom: clamp(14px, 1.4vw, 22px);
}

footer .logo svg {
  width: 106px;
  height: 36px;
}

footer .logo svg path,
footer .logo svg rect {
  fill: var(--accent-yellow);
  transition: fill 0.3s ease;
}

footer .logo:hover svg path {
  fill: #ffffff;
}

footer .cols {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  margin-bottom: clamp(16px, 1.6vw, 26px);
}

footer .cols .col {
  flex: 1;
}

footer .cols .col .colTitle {
  color: var(--accent-yellow);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: clamp(6px, 0.6vw, 10px);
}

footer .cols .col .text {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: 1.7;
}

footer .cols .col a {
  color: var(--text-secondary);
  display: block;
  margin-bottom: clamp(3px, 0.3vw, 6px);
  font-size: var(--fs-body);
}

footer .cols .col a:hover {
  color: var(--accent-yellow);
}

footer .bottomFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(12px, 1.2vw, 18px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: var(--fs-small);
}

footer .bottomFooter .left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 18px;
}

footer .bottomFooter .left .madeBy strong {
  color: var(--accent-yellow);
  font-weight: 600;
}

/* ==========================================================================
   CUSTOM CURSOR (Yellow badge over video)
   ========================================================================== */
.customCursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.customCursor.hidden {
  opacity: 0;
}

.customCursor .background {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 15px var(--accent-yellow-glow);
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.3s ease, background 0.25s ease, transform 0.3s ease;
}

.customCursor.hover-link .background {
  width: 34px;
  height: 34px;
  background: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.customCursor.video-hover .background {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: #f2efa3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%) rotate(12deg);
}

.customCursor .playCursor {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  color: #0c0c0d;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
}

.customCursor.video-hover .playCursor {
  opacity: 1;
}

.customCursor .playCursor .labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
}

.customCursor .playCursor .labels .label {
  font-size: 10px;
  font-weight: 700;
  color: #0c0c0d;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  max-width: 66px;
  text-align: center;
  white-space: normal;
}

/* Hide original resp play button */
.customPlayButtonResp {
  display: none !important;
}

/* Floating video preview that follows the cursor over project items.
   app.js creates this element and positions it with inline left/top, so it must be
   taken out of the flow - otherwise it stacks at the end of the page. */
.hoverVideoPreview {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9990;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.hoverVideoPreview.active {
  opacity: 1;
  transform: scale(1);
}

.hoverVideoPreview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   VIDEO OVERLAY MODAL
   ========================================================================== */
.videoOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background: rgba(5, 5, 6, 0.96);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.videoOverlay.active {
  opacity: 1;
  pointer-events: auto;
}

.videoOverlay .videoWrapper {
  width: 82vw;
  height: 46vw;
  max-width: 1400px;
  max-height: 787px;
  border-radius: 1.2vw;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: #000000;
  position: relative;
}

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

.videoOverlay .closeIndicator {
  position: absolute;
  top: 2.5vw;
  right: 2.5vw;
  width: 3.5vw;
  height: 3.5vw;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.videoOverlay .closeIndicator:hover {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  transform: rotate(90deg) scale(1.08);
}

.videoOverlay .closeIndicator .bar {
  background: #ffffff;
  width: 16px;
  height: 2px;
  position: absolute;
  transition: background 0.3s ease;
}

.videoOverlay .closeIndicator:hover .bar {
  background: #0c0c0d;
}

.videoOverlay .closeIndicator .bar:first-child {
  transform: rotate(45deg);
}

.videoOverlay .closeIndicator .bar:last-child {
  transform: rotate(-45deg);
}

/* ==========================================================================
   STICKY WHATSAPP BUTTON
   ========================================================================== */
.stickyWhatsappButton {
  position: fixed;
  bottom: 2.5vw;
  right: 2.5vw;
  z-index: 99;
}

.stickyWhatsappButton a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8vw;
  height: 3.8vw;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: #f2efa3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stickyWhatsappButton a:hover {
  transform: scale(1.12) translateY(-3px);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(242, 239, 163, 0.5);
}

.stickyWhatsappButton svg {
  width: 24px;
  height: 24px;
  fill: #0c0c0d;
}

/* ==========================================================================
   STACKED SECTIONS
   app.js pins each section once its bottom reaches the bottom of the screen,
   so the next one scrolls over it like a card dealt on top. The z-index order
   is what decides which section covers which.
   ========================================================================== */
.headerBigBlock {
  z-index: 1 !important;
}

.aboutWorkBlock {
  z-index: 2 !important;
}

.servicesBlock {
  z-index: 3 !important;
}

.cultureQuoteAnimationBlock {
  z-index: 4 !important;
}

/* Behind every section: the footer is hidden the whole way down and only shows at the
   end, when the last section slides up off it. */
footer {
  z-index: 0;
}


/* ==========================================================================
   RISING TEXT ("Hablemos" section)
   app.js wraps each word in .riseWord > .riseInner and animates the inner span.
   ========================================================================== */
.riseWord {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

.riseInner {
  display: inline-block;
  will-change: transform;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  header .headerBar .left {
    display: none;
  }
  header .headerBar .right .socials {
    display: none;
  }
  header .headerBar .right #hamburger {
    display: inline-flex;
  }
  .headerBigBlock .leftContent {
    max-width: 40vw;
  }
  .headerBigBlock .rightContent {
    max-width: 35vw;
  }
  .headerBigBlock .centerContent {
    width: 24vw;
    height: 24vw;
  }
  .aboutWorkBlock .aboutSection .cols,
  .aboutWorkBlock .projectsSection .cols,
  .servicesBlock .videoIntroBlock .cols,
  .howWeRollIntroBlock .cols,
  .cultureQuoteAnimationBlock .cols,
  footer .cols {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  /* :nth-child(n) matches the specificity of the desktop .col:first-child / :last-child width rules so these win */
  .aboutWorkBlock .aboutSection .cols .col:nth-child(n),
  .aboutWorkBlock .projectsSection .cols .col:nth-child(n),
  .servicesBlock .videoIntroBlock .cols .col:nth-child(n),
  .howWeRollIntroBlock .cols .col:nth-child(n),
  .cultureQuoteAnimationBlock .cols .col:nth-child(n) {
    width: 100% !important;
    max-width: 100% !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .aboutWorkBlock .projectsSection .projects {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .headerBigBlock .leftContent {
    top: 25%;
    max-width: 90vw;
    text-align: center;
    left: 5vw;
  }
  .headerBigBlock .leftContent h1.text.smaller {
    font-size: 3.5vw;
  }
  .headerBigBlock .leftContent .smallTitle {
    font-size: 5vw;
  }
  .headerBigBlock .rightContent {
    top: 75%;
    max-width: 90vw;
    text-align: center;
    right: 5vw;
  }
  .headerBigBlock .rightContent .text.smaller p {
    font-size: 3.5vw;
  }
  .headerBigBlock .centerContent {
    width: 40vw;
    height: 40vw;
  }
  .aboutWorkBlock .projectsSection .projects {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .aboutWorkBlock .aboutSection .animation {
    display: none !important;
  }

  /* Phone mockup: stack phone and counters instead of squeezing them side by side */
  .servicesBlock .videoBlock .scrollContainer .stickyWrapper .cols {
    flex-direction: column !important;
    gap: 32px !important;
  }
  .servicesBlock .videoBlock .scrollContainer .stickyWrapper .cols .col:nth-child(n) {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px !important;
  }
  .servicesBlock .videoBlock .videoContainer {
    width: min(72vw, 300px) !important;
    height: auto !important;
    aspect-ratio: 9 / 19 !important;
    border-radius: 36px !important;
  }
  .servicesBlock .videoBlock .videoContainer .background {
    border-radius: 36px !important;
  }
  .servicesBlock .videoBlock .videoContainer:after {
    top: -10px !important;
    left: -10px !important;
    width: calc(100% + 20px) !important;
    height: calc(100% + 20px) !important;
    border-radius: 44px !important;
  }
  .servicesBlock .videoBlock .videoContainer .phoneInfo {
    top: 14px !important;
    padding: 0 24px !important;
  }
  .servicesBlock .videoBlock .videoContainer .phoneInfo .camera {
    top: 0 !important;
    width: 80px !important;
    height: 22px !important;
    border-radius: 12px !important;
  }

  /* How we roll cards: keep them in a row, but swipeable and large enough to see */
  .howWeRollItemsBlock .scrollItem .images .innerImages {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding-bottom: 8px !important;
    scroll-snap-type: x mandatory;
  }
  .howWeRollItemsBlock .scrollItem .images .imageWrapper {
    width: 52vw !important;
    height: 69vw !important;
    border-radius: 12px !important;
    scroll-snap-align: start;
  }
}