/* ================================================================
   SIGNBAAZ — STYLES.CSS
   Aesthetic: Retro-Pop Art × Neon Punk × Maximalist Chaos
   Author: SignBaaz Design System
================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (design tokens)
---------------------------------------------------------------- */
:root {
  /* Color Palette */
  --clr-bg:           #0d0d0d;    /* near-black background */
  --clr-surface:      #181818;    /* card surfaces */
  --clr-surface-2:    #222222;    /* input / elevated surfaces */
  --clr-border:       #333333;

  --clr-yellow:       #FFE033;    /* hot yellow */
  --clr-pink:         #FF3CAC;    /* electric pink */
  --clr-cyan:         #00F5D4;    /* neon cyan */
  --clr-orange:       #FF6B35;    /* punchy orange */
  --clr-purple:       #B14EFF;    /* vivid purple */

  --clr-text:         #F5F0E8;    /* warm off-white */
  --clr-text-muted:   #888888;

  /* Typography */
  --ff-display:   'Boogaloo', cursive;
  --ff-marker:    'Permanent Marker', cursive;
  --ff-body:      'Nunito', sans-serif;

  /* Sizing */
  --nav-h: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Transitions */
  --tr-fast:   0.18s ease;
  --tr-mid:    0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --tr-slow:   0.6s ease;
}

/* ----------------------------------------------------------------
   2. CSS RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none; /* hidden — replaced by custom cursor */
}

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

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

/* ----------------------------------------------------------------
   4. CUSTOM CURSOR
---------------------------------------------------------------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity var(--tr-fast);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-yellow);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 2px solid var(--clr-pink);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

/* Expand ring on hover over interactive elements */
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring,
body:has(.product-card:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--clr-cyan);
}

/* ----------------------------------------------------------------
   5. UTILITY CLASSES
---------------------------------------------------------------- */
.accent-yellow { color: var(--clr-yellow); }
.accent-pink   { color: var(--clr-pink);   }
.accent-cyan   { color: var(--clr-cyan);   }
.accent-orange { color: var(--clr-orange); }

/* ----------------------------------------------------------------
   6. BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  transition: transform var(--tr-mid), box-shadow var(--tr-mid), background var(--tr-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Ripple pseudo-element on buttons */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn:hover { transform: translateY(-3px) scale(1.04); }
.btn:active { transform: translateY(0) scale(0.97); }

/* Primary — yellow fill */
.btn-primary {
  background: var(--clr-yellow);
  color: #0d0d0d;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(255,224,51,0.35);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(255,224,51,0.55);
}

/* Outline — pink border */
.btn-outline {
  background: transparent;
  color: var(--clr-pink);
  border: 2px solid var(--clr-pink);
  box-shadow: 0 0 16px rgba(255,60,172,0.2);
}
.btn-outline:hover {
  background: var(--clr-pink);
  color: #fff;
  box-shadow: 0 8px 40px rgba(255,60,172,0.45);
}

/* Small variant (used in card overlay) */
.btn-sm {
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
}

/* ----------------------------------------------------------------
   7. SECTION TAGS & SHARED SECTION STYLES
---------------------------------------------------------------- */
.section {
  padding: 100px 5vw;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-marker);
  font-size: 0.95rem;
  color: var(--clr-cyan);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ----------------------------------------------------------------
   8. NAVIGATION
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  z-index: 1000;
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--tr-slow);
}

/* Solid background when scrolled */
.navbar.scrolled {
  background: rgba(13,13,13,0.97);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px var(--clr-yellow));
  animation: float 3s ease-in-out infinite;
}

.logo-text {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  color: var(--clr-yellow);
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(255,224,51,0.5);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  position: relative;
  transition: color var(--tr-fast);
  letter-spacing: 0.04em;
}

/* Underline slide-in on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-yellow);
  transition: width var(--tr-mid);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger → X animation */
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   9. HERO SECTION
---------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 40px);
  overflow: hidden;
  position: relative;
}

/* Animated background blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  animation: blobDrift 12s ease-in-out infinite alternate;
}

.blob-1 {
  width: 500px; height: 500px;
  background: var(--clr-pink);
  top: -150px; left: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px; height: 400px;
  background: var(--clr-cyan);
  top: 30%; right: -80px;
  animation-delay: -4s;
}

.blob-3 {
  width: 350px; height: 350px;
  background: var(--clr-purple);
  bottom: 80px; left: 30%;
  animation-delay: -8s;
}

@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-20px, 40px) scale(0.95); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Eyebrow label */
.hero-tag {
  display: inline-block;
  font-family: var(--ff-marker);
  font-size: 0.9rem;
  color: var(--clr-cyan);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.2s forwards;
}

/* Headline — word-by-word staggered reveal */
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1.1;
  margin-bottom: 28px;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Stagger each word */
.word:nth-child(1) { animation-delay: 0.35s; }
.word:nth-child(2) { animation-delay: 0.45s; }
.word:nth-child(3) { animation-delay: 0.55s; }
.word:nth-child(4) { animation-delay: 0.65s; }
.word:nth-child(5) { animation-delay: 0.75s; }
.word:nth-child(6) { animation-delay: 0.85s; }
.word:nth-child(7) { animation-delay: 0.95s; }
.word:nth-child(8) { animation-delay: 1.05s; }

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--clr-text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 1.1s forwards;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 1.3s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-marker);
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 1.6s forwards;
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--clr-text-muted);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--clr-yellow);
  animation: scanLine 2s ease 2s infinite;
}

@keyframes scanLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ---- Marquee ticker ---- */
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--clr-yellow);
  margin-top: 60px;
  padding: 14px 0;
  transform: rotate(-1.2deg);
  margin-left: -5vw;
  margin-right: -5vw;
  width: calc(100% + 10vw);
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #0d0d0d;
  text-transform: uppercase;
  padding-right: 0;
}

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

/* ----------------------------------------------------------------
   10. ABOUT SECTION
---------------------------------------------------------------- */
.about-section {
  background: var(--clr-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Decorative board */
.about-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-board {
  background: #1a0a2e;
  border: 3px solid var(--clr-purple);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow:
    0 0 40px rgba(177,78,255,0.25),
    inset 0 0 30px rgba(177,78,255,0.08);
  position: relative;
  z-index: 1;
  transform: rotate(-2deg);
  transition: transform var(--tr-slow);
}

.about-board:hover { transform: rotate(0deg) scale(1.03); }

.board-quote {
  font-family: var(--ff-marker);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--clr-cyan);
  line-height: 1.5;
  margin-bottom: 16px;
}

.board-attr {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-style: italic;
}

/* Decorative stars */
.deco-star {
  position: absolute;
  font-size: 1.8rem;
  animation: spinStar 6s linear infinite;
  color: var(--clr-yellow);
}

.s1 { top: -20px; left: 10px; animation-delay: 0s; }
.s2 { bottom: 10px; right: -10px; animation-delay: -2s; font-size: 1.2rem; color: var(--clr-pink); }
.s3 { top: 50%; left: -30px; animation-delay: -4s; font-size: 1rem; }

@keyframes spinStar {
  0%   { transform: rotate(0deg)   scale(1); }
  50%  { transform: rotate(180deg) scale(1.25); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Color swatches */
.color-swatch {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
}

.sw1 {
  width: 80px; height: 80px;
  background: var(--clr-pink);
  bottom: -30px; left: -20px;
  filter: blur(30px);
}

.sw2 {
  width: 60px; height: 60px;
  background: var(--clr-yellow);
  top: -20px; right: 20px;
  filter: blur(20px);
}

/* About copy */
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-copy p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-copy em { color: var(--clr-cyan); font-style: normal; font-weight: 700; }

/* Stats row */
.stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--clr-yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   11. GALLERY / PRODUCT SECTION
---------------------------------------------------------------- */
.gallery-section {
  background: var(--clr-bg);
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--clr-border);
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  transition: all var(--tr-fast);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--clr-yellow);
  color: var(--clr-yellow);
  background: rgba(255,224,51,0.1);
  box-shadow: 0 0 20px rgba(255,224,51,0.2);
}

/* Product grid layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Product card */
.product-card {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: transform var(--tr-mid), box-shadow var(--tr-mid), border-color var(--tr-fast);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-yellow);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(255,224,51,0.1);
}

/* Card image wrapper — contains mock image + hover overlay */
.card-img-wrap {
  position: relative;
  height: 250px;
  height: fit-content;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}



/* ── ZOOM EFFECT ──
   On hover, the product mock (.product-mock) scales up smoothly,
   and the overlay fades in, creating a "peek inside" feel.
*/
.product-mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px;
  text-align: center;
}

/* Scale up on card hover — the key zoom interaction */
.product-card:hover .product-mock {
  transform: scale(1.12);
}

/* Overlay that slides up on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: black;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}



.product-card:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-tag {
  font-family: var(--ff-marker);
  font-size: 0.8rem;
  color: var(--clr-cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.overlay-desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* Card body (below image) */
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--clr-text);
}

.card-price {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-yellow);
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ctag {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  background: var(--clr-surface-2);
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
}

/* Filtered out cards */
.product-card.hidden {
  display: none;
}

/* ---- Product Mock Visual Styles ---- */

/* Nameplate 1: Rustic wood-look */
.nameplate-1 {
  background: linear-gradient(135deg, #3d2b1f 0%, #5c3d2e 50%, #3d2b1f 100%);
  border: 3px solid #8b5e3c;
  gap: 8px;
}

.mock-family {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--clr-yellow);
  letter-spacing: 0.18em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  text-align: center;
}

.mock-est {
  font-family: var(--ff-marker);
  font-size: 0.85rem;
  color: #c4a66e;
  letter-spacing: 0.1em;
}

.mock-divider {
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c4a66e, transparent);
  margin: 6px auto 0;
}

/* Sarcastic 1: Neon on black */
.sarcastic-1 {
  background: #0a0a0a;
  border: 2px solid var(--clr-pink);
  box-shadow: inset 0 0 30px rgba(255,60,172,0.1);
  gap: 12px;
}

.mock-sarcasm {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--clr-pink);
  text-shadow: 0 0 20px var(--clr-pink);
  letter-spacing: 0.1em;
}

.mock-sarcasm-sub {
  font-family: var(--ff-marker);
  font-size: 1rem;
  color: var(--clr-text);
  line-height: 1.5;
  text-align: center;
}

/* Sarcastic 2: Retro enamel */
.sarcastic-2 {
  background: linear-gradient(135deg, #1a3a1a, #0f2e0f);
  border: 4px solid #4caf50;
  gap: 10px;
}

.mock-chai {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: #76ff03;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 0 10px #76ff03;
}

.mock-chai-sub {
  font-family: var(--ff-marker);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* Nameplate 2: Neon glow */
.nameplate-2 {
  background: #050510;
  border: 2px solid var(--clr-cyan);
  gap: 12px;
}

.mock-neon-name {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  color: var(--clr-cyan);
  text-shadow: 0 0 10px var(--clr-cyan), 0 0 30px var(--clr-cyan), 0 0 60px rgba(0,245,212,0.4);
  letter-spacing: 0.15em;
  animation: neonPulse 2s ease-in-out infinite;
}

.mock-neon-sub {
  font-family: var(--ff-marker);
  font-size: 0.9rem;
  color: rgba(0,245,212,0.6);
  letter-spacing: 0.2em;
}

@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px var(--clr-cyan), 0 0 30px var(--clr-cyan); }
  50%       { text-shadow: 0 0 6px var(--clr-cyan), 0 0 16px var(--clr-cyan), 0 0 60px rgba(0,245,212,0.6); }
}

/* Custom 1: Upload prompt */
.custom-1 {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 2px dashed var(--clr-purple);
  gap: 10px;
}

.mock-custom-label {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-purple);
  letter-spacing: 0.2em;
}

.mock-custom-here {
  font-family: var(--ff-marker);
  font-size: 1.5rem;
  color: var(--clr-text);
}

.mock-custom-note {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-family: var(--ff-body);
}

/* Sarcastic 3: Puneri style */
.sarcastic-3 {
  background: #fdf0d5;
  border: 4px double #8B4513;
  gap: 6px;
}

.mock-puneri {
  font-family: var(--ff-marker);
  font-size: 1.1rem;
  color: #8B4513;
  letter-spacing: 0.05em;
}

.mock-puneri-en {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

/* ----------------------------------------------------------------
   12. CONTACT / FORMS SECTION
---------------------------------------------------------------- */
.contact-section {
  background: var(--clr-surface);
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs in contact */
.contact-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--clr-cyan);
  opacity: 0.04;
  filter: blur(100px);
  top: -200px; right: -200px;
  pointer-events: none;
}

.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Form card wrapper */
.form-card {
  background: var(--clr-surface-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.form-card:hover {
  border-color: rgba(255,224,51,0.3);
  box-shadow: 0 0 40px rgba(255,224,51,0.06);
}

/* Accent strip at top of each form card */
.form-card--enquiry::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-pink), var(--clr-yellow));
}

.form-card--upload::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-cyan), var(--clr-purple));
}

/* Form card header */
.form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.form-icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255,224,51,0.4));
}

.form-title {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* Form group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-label {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--clr-text);
  letter-spacing: 0.04em;
}

/* Inputs and textareas */
.form-input {
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 1rem;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
  width: 100%;
  outline: none;
}

.form-input::placeholder { color: var(--clr-text-muted); opacity: 0.7; }

.form-input:focus {
  border-color: var(--clr-yellow);
  box-shadow: 0 0 0 3px rgba(255,224,51,0.15);
  background: #1f1f1f;
}

.form-input.error {
  border-color: var(--clr-pink);
  box-shadow: 0 0 0 3px rgba(255,60,172,0.12);
}

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

/* Validation error text */
.field-error {
  font-size: 0.8rem;
  color: var(--clr-pink);
  font-family: var(--ff-marker);
  min-height: 16px;
}

/* Form submit button */
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 16px;
  margin-top: 8px;
}

/* Success message */
.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(0,245,212,0.1);
  border: 1px solid var(--clr-cyan);
  color: var(--clr-cyan);
  font-family: var(--ff-display);
  font-size: 1rem;
  text-align: center;
  animation: fadeSlideUp 0.4s ease forwards;
}

/* ---- File Drop Zone ---- */
.file-drop-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 36px 20px;
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--tr-fast), background var(--tr-fast);
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: var(--clr-cyan);
  background: rgba(0,245,212,0.06);
}

.file-drop-zone:focus-visible {
  outline: 2px solid var(--clr-yellow);
  outline-offset: 2px;
}

.file-icon { font-size: 2rem; line-height: 1; }

.file-text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

.file-text strong { color: var(--clr-cyan); }

.file-hint {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  opacity: 0.7;
}

/* The actual hidden file input sits inside the drop zone */
.file-input-hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Chosen file name display */
.file-chosen {
  font-size: 0.82rem;
  color: var(--clr-cyan);
  font-family: var(--ff-marker);
  min-height: 18px;
  display: block;
  margin-top: 4px;
}

/* ----------------------------------------------------------------
   13. FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--clr-border);
  padding: 48px 5vw;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-tagline {
  font-family: var(--ff-marker);
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  transition: color var(--tr-fast);
}

.footer-links a:hover { color: var(--clr-yellow); }

.footer-copy {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  opacity: 0.6;
}

/* ----------------------------------------------------------------
   14. BACK TO TOP BUTTON
---------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-yellow);
  color: #0d0d0d;
  font-size: 1.2rem;
  font-weight: 800;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--tr-fast), transform var(--tr-fast);
  box-shadow: 0 4px 20px rgba(255,224,51,0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--clr-pink);
  box-shadow: 0 4px 20px rgba(255,60,172,0.5);
}

/* ----------------------------------------------------------------
   15. SCROLL-TRIGGERED FADE-IN ANIMATION
   JS adds .visible class when element enters viewport.
---------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   16. SHARED KEYFRAMES
---------------------------------------------------------------- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ----------------------------------------------------------------
   17. RESPONSIVE DESIGN
---------------------------------------------------------------- */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-art {
    order: -1;
  }

  .forms-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Hide custom cursor on touch devices */
  .cursor-dot,
  .cursor-ring { display: none; }

  body { cursor: auto; }

  /* Nav: show hamburger, hide link list */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  }

  .nav-links.open {
    max-height: 400px;
    padding: 24px 0 32px;
  }

  .nav-link {
    font-size: 1.4rem;
    padding: 14px 0;
  }

  /* Hero */
  .hero-section { padding: 120px 5vw 80px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  /* Gallery */
  .product-grid {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-card { padding: 28px 20px; }

  /* Sections */
  .section { padding: 70px 5vw; }

  /* Marquee */
  .marquee-wrap { transform: rotate(0); margin-left: -5vw; width: calc(100% + 10vw); }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 1rem; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .stats-row { gap: 20px; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.85rem; }
}
