/* ================================================================
   NYCXSTORE — style.css
   Streetwear & Thrift Culture Landing Page
   Theme: Dark / Street / Raw / Bold
   ================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ================================================================ */
:root {
  /* — Colors — */
  --clr-bg: #0a0a0a; /* near-black background */
  --clr-bg-2: #111111; /* slightly lighter for cards */
  --clr-bg-3: #1a1a1a; /* borders / lines */
  --clr-white: #f0ece3; /* warm white — zine feel */
  --clr-accent: #e63946; /* fire red accent */
  --clr-accent-2: #00d4ff; /* cyan glitch highlight */
  --clr-accent-3: #f4d35e; /* golden yellow pop */
  --clr-muted: #6b6b6b; /* muted text */
  --clr-border: #222222; /* subtle borders */

  /* — Typography — */
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "Rajdhani", "Arial Narrow", sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  /* — Spacing — */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* — Sizing — */
  --container-max: 1280px;
  --header-h: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* — Transitions — */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --t-fast: 0.2s;
  --t-med: 0.45s;
  --t-slow: 0.8s;
}

/* ================================================================
   2. RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* ganti dengan custom cursor */
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Sembunyikan kursor default di semua elemen interaktif */
a,
button,
[data-cursor] {
  cursor: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* Focus visible untuk aksesibilitas */
:focus-visible {
  outline: 2px dashed var(--clr-accent);
  outline-offset: 4px;
}

/* ================================================================
   3. SCROLLBAR STYLING
   ================================================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-accent);
  border-radius: 99px;
}

/* ================================================================
   4. CUSTOM CURSOR
   ================================================================ */

/* Kursor utama — titik kecil */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--clr-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width var(--t-fast),
    height var(--t-fast),
    background var(--t-fast),
    opacity var(--t-fast);
  mix-blend-mode: difference;
}

/* Follower — lingkaran besar yang lag */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(230, 57, 70, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s var(--ease-out),
    width var(--t-med) var(--ease-out),
    height var(--t-med) var(--ease-out),
    border-color var(--t-fast),
    background var(--t-fast);
}

/* State hover: cursor membesar di atas CTA/link */
body.cursor--cta .cursor {
  width: 60px;
  height: 60px;
  background: var(--clr-accent);
  opacity: 0.15;
}
body.cursor--cta .cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--clr-accent);
}
body.cursor--link .cursor-follower {
  width: 48px;
  height: 48px;
  border-color: var(--clr-accent-2);
}
body.cursor--img .cursor-follower {
  width: 80px;
  height: 80px;
  background: rgba(230, 57, 70, 0.08);
  border-color: var(--clr-accent);
}
body.cursor--logo .cursor {
  background: var(--clr-accent-3);
}

/* ================================================================
   5. NOISE OVERLAY — grain texture analog
   ================================================================ */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ================================================================
   6. UTILITY CLASSES
   ================================================================ */

/* Container */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--t-fast) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect pada semua btn */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transition: left 0.5s;
}
.btn:hover::after {
  left: 140%;
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.btn--primary:hover {
  background: transparent;
  color: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}
.btn--outline:hover {
  background: var(--clr-white);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(240, 236, 227, 0.3);
}
.btn--ghost:hover {
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
}

/* Section headers */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: normal;
  color: var(--clr-accent);
  -webkit-text-stroke: 0px;
}

.section-desc {
  max-width: 52ch;
  color: var(--clr-muted);
  font-size: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header .section-desc {
  margin-inline: auto;
}

/* ================================================================
   7. GLITCH EFFECT
   ================================================================ */
@keyframes glitch-1 {
  0%,
  100% {
    clip-path: inset(0 0 95% 0);
    transform: translate(-4px, 0);
  }
  20% {
    clip-path: inset(15% 0 70% 0);
    transform: translate(4px, 0);
  }
  40% {
    clip-path: inset(45% 0 40% 0);
    transform: translate(-3px, 0);
  }
  60% {
    clip-path: inset(65% 0 20% 0);
    transform: translate(3px, 0);
  }
  80% {
    clip-path: inset(85% 0 5% 0);
    transform: translate(-2px, 0);
  }
}
@keyframes glitch-2 {
  0%,
  100% {
    clip-path: inset(0 0 95% 0);
    transform: translate(4px, 0);
  }
  25% {
    clip-path: inset(30% 0 55% 0);
    transform: translate(-4px, 0);
  }
  50% {
    clip-path: inset(55% 0 30% 0);
    transform: translate(3px, 0);
  }
  75% {
    clip-path: inset(75% 0 10% 0);
    transform: translate(-3px, 0);
  }
}

.glitch {
  position: relative;
  display: inline-block; /* perlu inline-block agar pseudo-element bekerja */
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* pastikan font sama persis */
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  white-space: pre;
}
.glitch::before {
  color: var(--clr-accent-2);
  animation: glitch-1 6s infinite steps(1);
  opacity: 0.6;
}
.glitch::after {
  color: var(--clr-accent);
  animation: glitch-2 6s infinite steps(1) 0.3s;
  opacity: 0.5;
}
/* Aktifkan glitch saat hover */
.glitch:hover::before {
  animation-duration: 0.8s;
}
.glitch:hover::after {
  animation-duration: 0.8s;
}

/* Glitch untuk elemen gambar */
@keyframes glitch-img {
  0% {
    transform: translate(0);
    filter: hue-rotate(0deg);
  }
  10% {
    transform: translate(-4px, 2px);
    filter: hue-rotate(90deg);
  }
  20% {
    transform: translate(4px, -2px);
  }
  30% {
    transform: translate(-2px, 4px);
    filter: hue-rotate(180deg);
  }
  40% {
    transform: translate(2px, -4px);
  }
  50% {
    transform: translate(0);
    filter: hue-rotate(0deg);
  }
  100% {
    transform: translate(0);
  }
}
.glitch-img:hover img {
  animation: glitch-img 0.6s steps(1) 1;
}

/* ================================================================
   8. SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
}
.reveal-up {
  transform: translateY(50px);
}
.reveal-left {
  transform: translateX(-60px);
}
.reveal-right {
  transform: translateX(60px);
}

/* Kelas 'visible' ditambahkan oleh JS IntersectionObserver */
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delay untuk child elemen */
.reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-up:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal-up:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal-up:nth-child(6) {
  transition-delay: 0.5s;
}

/* ================================================================
   9. HEADER / NAVBAR
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  flex-direction: column;
  transition:
    background var(--t-med),
    backdrop-filter var(--t-med),
    box-shadow var(--t-med);
}

/* Scrolled state — ditambahkan JS */
.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--clr-border);
}

.header__inner {
  max-width: var(--container-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header__logo-fallback {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--clr-white);
  align-items: center;
}
.header__logo-fallback em {
  font-style: normal;
  color: var(--clr-accent);
}

/* Desktop nav */
.header__nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.header__nav a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  color: rgba(240, 236, 227, 0.7);
  position: relative;
  transition: color var(--t-fast);
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med) var(--ease-out);
}
.header__nav a:hover {
  color: var(--clr-white);
}
.header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease-out);
  transform-origin: center;
}

/* Animasi hamburger → X */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile fullscreen nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform var(--t-slow) var(--ease-out);
  visibility: hidden;
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-nav nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.mobile-nav__link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: rgba(240, 236, 227, 0.3);
  transition: color var(--t-fast);
}
.mobile-nav__link:hover {
  color: var(--clr-white);
}

.mobile-nav__socials {
  display: flex;
  gap: 1.25rem;
  font-size: 1.5rem;
}
.mobile-nav__socials a {
  color: var(--clr-muted);
  transition:
    color var(--t-fast),
    transform var(--t-fast);
}
.mobile-nav__socials a:hover {
  color: var(--clr-accent);
  transform: scale(1.2);
}

/* ================================================================
   10. HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding-top: var(--header-h);
  padding-inline: clamp(1rem, 5vw, 3rem);
  max-width: var(--container-max);
  margin-inline: auto;
  overflow: hidden;
}

/* Animated BG text */
.hero__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
  pointer-events: none;
  z-index: 0;
  padding-right: 2vw;
  opacity: 0.035;
  overflow: hidden;
}
.hero__bg-text span {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  white-space: nowrap;
  animation: bgTextScroll 20s linear infinite;
}
.hero__bg-text span:nth-child(even) {
  animation-direction: reverse;
  animation-duration: 24s;
}
@keyframes bgTextScroll {
  from {
    transform: translateX(8%);
  }
  to {
    transform: translateX(-8%);
  }
}

/* Main content */
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 680px;
  padding-block: clamp(3rem, 8vh, 6rem);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--clr-accent);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--clr-white);
  display: block; /* override inline-block dari .glitch untuk headline khusus */
}
.hero__headline em {
  font-style: normal;
  display: block;
  /* Outline text effect */
  -webkit-text-stroke: 2px var(--clr-white);
  color: transparent;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(240, 236, 227, 0.65);
  max-width: 44ch;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

/* Floating card */
.hero__card {
  position: relative;
  z-index: 1;
  width: clamp(200px, 22vw, 300px);
  flex-shrink: 0;
  align-self: center;
}
.hero__card-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  box-shadow:
    20px 20px 60px rgba(0, 0, 0, 0.6),
    -4px -4px 20px rgba(230, 57, 70, 0.08);
}
.hero__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.hero__card:hover .hero__card-img img {
  transform: scale(1.05);
}

.hero__card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}

.hero__card-caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--clr-muted);
  margin-top: 0.75rem;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}
.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-muted);
  writing-mode: vertical-lr;
}

/* ================================================================
   11. ABOUT SECTION
   ================================================================ */
.about {
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal accent line */
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-accent),
    transparent
  );
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* Image collage */
.about__images {
  position: relative;
  height: 550px;
}

.about__img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about__img:hover img {
  transform: scale(1.06);
}

.about__img--main {
  width: 75%;
  height: 75%;
  top: 0;
  left: 0;
  box-shadow: 16px 16px 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.about__img--accent {
  width: 52%;
  height: 48%;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 3px solid var(--clr-bg);
}

.about__sticker {
  position: absolute;
  bottom: 15%;
  left: 55%;
  z-index: 4;
  width: 80px;
  height: 80px;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  box-shadow:
    0 0 0 6px var(--clr-bg),
    0 0 0 8px var(--clr-accent);
  animation: rotateSpin 10s linear infinite;
}
@keyframes rotateSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Copy */
.about__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__copy p {
  color: rgba(240, 236, 227, 0.65);
  line-height: 1.75;
}

/* Stats */
.about__stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
}
.about__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--clr-white);
}
.stat-num + sup {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--clr-accent);
  vertical-align: super;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ================================================================
   12. MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: var(--clr-accent);
  padding-block: 0.75rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Kemiringan sedikit — street vibes */
  transform: rotate(-1deg) scaleX(1.1);
  margin-block: -2px;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.marquee-dot {
  color: rgba(255, 255, 255, 0.4) !important;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ================================================================
   13. KATALOG / PRODUCT CARDS
   ================================================================ */
.catalog {
  padding-block: var(--space-xl);
}

/* Filter tabs */
.catalog__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  border: 1px solid var(--clr-border);
  background: transparent;
  color: var(--clr-muted);
  transition: all var(--t-fast) var(--ease-out);
  cursor: none;
}
.filter-btn:hover {
  border-color: var(--clr-white);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}

/* Product grid */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Product card */
.product-card {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform var(--t-med) var(--ease-out),
    box-shadow var(--t-med) var(--ease-out),
    border-color var(--t-fast);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--clr-accent);
  border-color: var(--clr-accent);
}

/* Hidden state untuk filter */
.product-card.hidden {
  display: none;
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--clr-bg-3);
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.06);
}

/* Tag badge */
.product-card__tag {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  border: 1px solid var(--clr-border);
}
.product-card__tag--fire {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

/* Overlay CTA */
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  opacity: 0;
  transition: opacity var(--t-med);
}
.product-card:hover .product-card__overlay {
  opacity: 1;
}

/* Info area */
.product-card__info {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.product-card__info h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.product-card__sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--clr-muted);
  letter-spacing: 0.08em;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--clr-accent);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

/* Catalog bottom CTA */
.catalog__cta {
  text-align: center;
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.catalog__cta p {
  color: var(--clr-muted);
  font-size: 0.95rem;
  max-width: 40ch;
}

/* ================================================================
   14. INSTAGRAM GRID
   ================================================================ */
.instagram {
  padding-block: var(--space-xl);
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--clr-bg-3);
  display: block;
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s var(--ease-out),
    filter 0.4s;
}
.ig-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(230, 57, 70, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  opacity: 0;
  transition: opacity var(--t-med);
}
.ig-tile:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}
.ig-tile:hover .ig-tile__overlay {
  opacity: 1;
}

/* Social chips */
.social-handles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg);
  color: rgba(240, 236, 227, 0.7);
  transition: all var(--t-fast) var(--ease-out);
}
.social-chip:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ================================================================
   15. LOCATIONS SECTION
   ================================================================ */
.locations {
  padding-block: var(--space-xl);
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.location-card {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 0;
  overflow: hidden;
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-med);
}
.location-card:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 8px 40px rgba(230, 57, 70, 0.12);
}

.location-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.location-card__number {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.85;
  color: var(--clr-border);
  letter-spacing: -0.03em;
  /* Number "watermark" behind content */
  align-self: center;
}
.location-card__header h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.location-card__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.location-card address {
  color: rgba(240, 236, 227, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-left: calc(5rem + 1rem); /* indent under number */
}

.location-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding-left: calc(5rem + 1rem);
}

/* Map embed */
.location-card__map {
  position: relative;
  width: calc(100% + 4rem); /* bleed keluar padding kiri-kanan */
  margin-left: -2rem;
  height: 240px;
  overflow: hidden;
  border-top: 1px solid var(--clr-border);
}
.location-card__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(90%) contrast(80%);
  opacity: 0.75;
  transition:
    filter var(--t-med),
    opacity var(--t-med);
}
.location-card:hover .location-card__map iframe {
  filter: grayscale(30%) invert(0%) contrast(100%);
  opacity: 1;
}

/* ================================================================
   16. CONTACT SECTION
   ================================================================ */
.contact {
  padding-block: var(--space-xl);
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

/* Decorative large text */
.contact::before {
  content: "HIT US";
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 18rem);
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__copy p:last-child {
  color: rgba(240, 236, 227, 0.6);
}

/* Contact cards */
.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.1rem 1.1rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-bg);
  transition: all var(--t-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clr-accent);
  transform: translateY(101%);
  transition: transform var(--t-med) var(--ease-out);
  z-index: 0;
}
.contact-card:hover::before {
  transform: translateY(0);
}
.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card__icon {
  font-size: 1.6rem;
  color: var(--clr-accent);
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.contact-card:hover .contact-card__icon {
  color: #fff;
}

.contact-card__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
  transition: color var(--t-fast);
}
.contact-card:hover .contact-card__label {
  color: rgba(255, 255, 255, 0.75);
}

.contact-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--t-fast);
}
.contact-card:hover .contact-card__title {
  color: #fff;
}

.contact-card__sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--clr-muted);
  transition: color var(--t-fast);
}
.contact-card:hover .contact-card__sub {
  color: rgba(255, 255, 255, 0.7);
}

.contact-card__arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--clr-muted);
  transition:
    transform var(--t-fast),
    color var(--t-fast);
}
.contact-card:hover .contact-card__arrow {
  transform: translate(3px, -3px);
  color: #fff;
}

/* ================================================================
   17. FOOTER
   ================================================================ */
.footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--clr-border);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.footer__brand p {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 32ch;
}
.footer__socials {
  display: flex;
  gap: 1rem;
  font-size: 1.3rem;
}
.footer__socials a {
  color: var(--clr-muted);
  transition:
    color var(--t-fast),
    transform var(--t-fast);
}
.footer__socials a:hover {
  color: var(--clr-accent);
  transform: translateY(-3px);
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 1rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer__col a {
  font-size: 0.9rem;
  color: rgba(240, 236, 227, 0.65);
  transition: color var(--t-fast);
}
.footer__col a:hover {
  color: var(--clr-white);
}
.footer__col i {
  color: var(--clr-accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__col span {
  font-size: 0.88rem;
  color: rgba(240, 236, 227, 0.55);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--clr-muted);
  letter-spacing: 0.05em;
}
.heart {
  color: var(--clr-accent);
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 1rem !important;
  letter-spacing: 0.12em;
  color: rgba(240, 236, 227, 0.12) !important;
  text-transform: uppercase;
}

/* ================================================================
   18. BACK TO TOP BUTTON
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--t-med),
    transform var(--t-med) var(--ease-out),
    background var(--t-fast);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--clr-accent-2);
  transform: translateY(-4px) !important;
}

/* ================================================================
   19. RESPONSIVE — TABLET (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-top: calc(var(--header-h) + 2rem);
  }
  .hero__content {
    align-items: center;
    max-width: 100%;
  }
  .hero__eyebrow {
    justify-content: center;
  }
  .hero__eyebrow::before {
    display: none;
  }
  .hero__sub {
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__card {
    position: relative;
    width: clamp(160px, 40vw, 260px);
    margin-top: -2rem;
  }
  .hero__scroll {
    display: none;
  }
  .hero__bg-text {
    opacity: 0.02;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__images {
    height: 380px;
    order: -1;
    margin-inline: auto;
    max-width: 500px;
    width: 100%;
  }

  .locations__grid {
    grid-template-columns: 1fr;
  }
  .location-card address,
  .location-card__actions {
    padding-left: 0;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }
  .contact__cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ================================================================
   20. RESPONSIVE — MOBILE (≤ 640px)
   ================================================================ */
@media (max-width: 640px) {
  :root {
    --header-h: 60px;
    --space-xl: 5rem;
    --space-lg: 3rem;
  }

  .hero {
    padding-top: calc(var(--header-h) + 1rem);
    gap: 1.5rem;
  }
  .hero__headline {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .about__images {
    height: 280px;
  }
  .about__sticker {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Sembunyikan 3 tile terakhir di mobile */
  .ig-tile:nth-child(n + 4) {
    display: none;
  }

  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .contact__cards {
    grid-template-columns: 1fr;
  }
  .contact__copy .section-title {
    font-size: 2.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__tagline {
    display: none;
  }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }

  /* Nonaktifkan custom cursor di touch device */
  .cursor,
  .cursor-follower {
    display: none;
  }
  html {
    cursor: auto;
  }
  a,
  button,
  [data-cursor] {
    cursor: auto;
  }
}

/* ================================================================
   21. REDUCED MOTION — aksesibilitas
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track {
    animation: none;
  }
  .hero__bg-text span {
    animation: none;
  }
  .about__sticker {
    animation: none;
  }
}
