/* =========================================
   JINORA HARDWARE — Premium Design System
   Author: Antigravity
   Version: 3.0 Custom
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

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

:root {
  /* Colors */
  --red: #D62828;
  --red-dark: #A91E1E;
  --red-light: #FF4444;
  --black: #0a0a0a;
  --black-800: #111111;
  --black-700: #1a1a1a;
  --white: #ffffff;
  --grey-100: #f8f8f8;
  --grey-200: #f0f0f0;
  --grey-400: #cccccc;
  --grey-600: #888888;
  --grey-800: #444444;
  --text-primary: #0a0a0a;
  --text-muted: #666;

  /* Spacing */
  --section-py: 100px;
  --container: 1240px;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 0.2s var(--ease);
  --med: 0.4s var(--ease);
  --slow: 0.7s var(--ease);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: none; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* ─── CUSTOM CURSOR ─────────────────────── */
#cursor {
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width var(--fast), height var(--fast), background var(--fast);
  mix-blend-mode: normal;
}

#cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(214,40,40,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--ease);
}

body.cursor-hover #cursor { width: 20px; height: 20px; }
body.cursor-hover #cursor-follower { width: 54px; height: 54px; border-color: var(--red); }

/* ─── CONTAINER ─────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── TYPOGRAPHY ────────────────────────── */
h1, h2, h3, h4, h5 { line-height: 1.1; letter-spacing: -0.03em; font-weight: 700; color: var(--text-primary); }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
}

.section-title span { 
    background: linear-gradient(135deg, var(--red) 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-top: 24px;
  line-height: 1.6;
  font-weight: 400;
}

/* ─── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--fast);
  cursor: none;
  border: none;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--text-primary); }
.btn-outline:hover { background: var(--text-primary); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }

/* ─── HEADER ────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: transparent;
  z-index: 1000;
  transition: all var(--med);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

header.scrolled {
  background: rgba(255,255,255,0.95);
  height: 70px;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled .logo,
header.scrolled .nav-links a {
  color: var(--black);
}

header.scrolled .nav-links a::after { background: var(--red); }

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--med);
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-close {
  position: absolute;
  top: 30px; right: 30px;
  background: none; border: none;
  font-size: 2rem; color: var(--black);
  cursor: none; transition: color var(--fast);
}
.search-close:hover { color: var(--red); }
.search-container {
  width: 90%;
  max-width: 800px;
  position: relative;
}
#search-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--grey-300);
  background: transparent;
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  padding: 15px 0;
  outline: none;
  transition: border-color var(--med);
}
#search-input::placeholder { color: var(--grey-400); }
#search-input:focus { border-color: var(--red); }

.search-results {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-height: 55vh;
  overflow-y: auto;
  padding-bottom: 20px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  background: var(--grey-50);
  text-decoration: none;
  color: var(--black);
  transition: all var(--fast);
  cursor: none;
}
.search-result-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.search-result-img {
  width: 60px; height: 60px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
  padding: 4px;
}
.search-result-info h4 {
  font-size: 0.9rem; font-weight: 700; margin-bottom: 4px;
}
.search-result-info p {
  font-size: 0.75rem; color: var(--grey-500); font-weight: 600; text-transform: uppercase;
}

@media (max-width: 768px) {
  #search-input { font-size: 1.5rem; }
  .search-results { grid-template-columns: 1fr; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--fast);
  transform-origin: center;
}
.site-header.scrolled .hamburger span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity var(--med);
}
.mobile-nav.open { opacity: 1; }
.mobile-nav a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--fast);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .cta-mobile {
  background: var(--red);
  color: var(--white) !important;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 1rem !important;
}

/* ─── HERO ──────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2000');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  filter: grayscale(100%);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%),
              linear-gradient(to right, white 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
}

.hero-eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--primary);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.0;
  letter-spacing: -0.05em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.35s var(--ease) forwards;
}

  letter-spacing: -0.04em;
}

.hero-content h1 em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLine 2s 1.5s infinite;
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0;
  animation: fadeIn 0.8s 1s forwards;
}

.stat-item {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  display: block;
}

.stat-number span { color: var(--red); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ─── SECTIONS COMMON ────────────────────── */
.section { padding: var(--section-py) 0; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--black); }
.section-grey { background: var(--grey-100); }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 12px auto 0; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
/* Main.js adds 'revealed' — this is the trigger */
.reveal.revealed {
  opacity: 1;
  transform: none;
}
/* Legacy alias just in case */
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── BRAND STRIP ────────────────────────── */
.brand-strip {
  background: var(--red);
  padding: 18px 0;
  overflow: hidden;
}
.brand-strip-inner {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.brand-strip span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand-strip span::after { content: '◆'; font-size: 0.5rem; opacity: 0.6; }

/* ─── ABOUT SECTION ─────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  width: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  bottom: -40px;
  right: -40px;
  border: 10px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  top: 30px; left: -30px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 6px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .num { font-size: 2.2rem; font-weight: 900; line-height: 1; display: block; }
.about-badge .lbl { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.about-feat:last-child { border-bottom: none; }

.about-feat-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.about-feat h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.about-feat p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ─── PRODUCTS SHOWCASE ──────────────────── */
.cat-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cat-btn {
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--grey-400);
  background: none;
  border-radius: 40px;
  color: var(--grey-600);
  cursor: none;
  transition: all var(--fast);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--med);
  cursor: none;
  border: 1px solid rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--grey-100);
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--med);
  cursor: none;
  border: 1px solid rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--grey-100);
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* Product Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--med);
  backdrop-filter: blur(10px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white);
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--med);
  max-height: 90vh;
}
.modal-overlay.open .modal-box { transform: none; }

.modal-img { height: 100%; object-fit: cover; }
.modal-body { padding: 48px 40px; overflow-y: auto; display: flex; flex-direction: column; justify-content: center; }
.modal-cat { font-size: 0.7rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.modal-title { font-size: 1.5rem; font-weight: 800; line-height: 1.25; margin-bottom: 20px; }
.modal-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  box-shadow: var(--shadow-md);
  transition: background var(--fast), color var(--fast);
}
.modal-close:hover { background: var(--red); color: var(--white); }

/* ─── CATEGORIES SHOWCASE ────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ─── CATEGORY IMAGE CARDS (PREMIUM UI) ──── */
.cat-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: var(--black);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform var(--med), box-shadow var(--med);
  aspect-ratio: 4/5;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.16);
}
.cat-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cat-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-card:hover .cat-card-img img {
  transform: scale(1.08);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  transition: opacity var(--med);
}
.cat-card:hover .cat-overlay { opacity: 0.95; }
.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.cat-card-content h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.25;
}
.cat-card-content p {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cat-arrow {
  position: absolute;
  right: 24px;
  bottom: 30px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--med);
}
.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--red);
}

/* ─── USP / WHY US ───────────────────────── */
.usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.usp-card {
  padding: 40px 36px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all var(--med);
  position: relative;
  overflow: hidden;
}

.usp-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width var(--med);
}

.usp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.usp-card:hover::after { width: 100%; }

.usp-icon {
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 24px;
  display: block;
}
.usp-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.usp-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ─── EXHIBITION ─────────────────────────── */
.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.exhibit-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--med);
  border: 1px solid rgba(0,0,0,0.06);
}
.exhibit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.exhibit-img {
  height: 220px;
  overflow: hidden;
}
.exhibit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.exhibit-card:hover .exhibit-img img { transform: scale(1.06); }

.exhibit-body {
  padding: 28px;
}

.exhibit-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.exhibit-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.exhibit-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── FOUNDER ────────────────────────────── */
.founder-section {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 80px;
  align-items: center;
}

.founder-img-wrap { position: relative; }
.founder-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
}

.founder-quote-box {
  position: absolute;
  bottom: 40px; right: -40px;
  background: var(--red);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 6px;
  max-width: 260px;
  box-shadow: var(--shadow-lg);
}
.founder-quote-box p { font-size: 0.9rem; line-height: 1.6; font-style: italic; }
.founder-quote-box cite { font-size: 0.75rem; font-weight: 700; margin-top: 10px; display: block; letter-spacing: 0.05em; }

.founder-content h2 { margin-bottom: 8px; }
.founder-content .subtitle { font-size: 1rem; color: var(--red); font-weight: 600; margin-bottom: 28px; }
.founder-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

.founder-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.founder-tag {
  padding: 8px 18px;
  background: var(--grey-100);
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-800);
}

/* ─── CONTACT SECTION ────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--grey-100);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-600); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--black); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 32px;
  transition: background var(--fast);
}
.whatsapp-btn:hover { background: #1da851; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--grey-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--black);
  background: var(--grey-100);
  transition: border-color var(--fast), background var(--fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(214,40,40,0.08);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: none;
  transition: background var(--fast);
}
.form-submit:hover { background: var(--red-dark); }

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--black-800);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.footer-brand-logo span { color: var(--red); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--fast);
}
.footer-social-link:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--fast);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i { color: var(--red); margin-top: 3px; font-size: 0.9rem; }
.footer-contact-item span { font-size: 0.85rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.82rem; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  z-index: 100;
  box-shadow: var(--shadow-md);
  transform: translateY(80px);
  transition: transform var(--med), background var(--fast);
  cursor: none;
}
.back-to-top.visible { transform: none; }
.back-to-top:hover { background: var(--red-dark); }

/* ─── KEYFRAMES ─────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .container { padding: 0 28px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .founder-section, .contact-wrapper { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; --container: 100%; }
  .container { padding: 0 20px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  .about-grid, .founder-section, .contact-wrapper { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge { top: 20px; left: 0; }
  .founder-quote-box { right: 10px; max-width: 200px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .usps-grid { grid-template-columns: 1fr; }
  .exhibition-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-img { height: 250px; }
  .founder-section { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 18px 16px; }
  .stat-number { font-size: 1.6rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* %%% GLOBAL INQUIRY MODAL %%%%%%%%%%%%%%%%%% */
.inquiry-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity var(--med); backdrop-filter: blur(10px);
}
.inquiry-modal-overlay.open { opacity: 1; pointer-events: all; }
.inquiry-modal {
  background: var(--white); border-radius: 12px; width: 100%; max-width: 500px;
  transform: scale(0.95) translateY(20px); transition: transform var(--med);
  overflow: hidden; display: flex; flex-direction: column;
}
.inquiry-modal-overlay.open .inquiry-modal { transform: none; }
.inquiry-modal-header {
  padding: 24px 30px; border-bottom: 1px solid var(--grey-200);
  display: flex; justify-content: space-between; align-items: center; background: var(--grey-100);
}
.inquiry-modal-header h3 { font-size: 1.2rem; font-weight: 800; color: var(--black); }
.inquiry-close {
  background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--grey-600);
}
.inquiry-close:hover { color: var(--red); }
.inquiry-modal-body { padding: 30px; }
.inquiry-form-group { margin-bottom: 20px; }
.inquiry-form-group label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.inquiry-form-group input, .inquiry-form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--grey-300); border-radius: 6px;
  font-family: inherit; font-size: 0.9rem; transition: border-color var(--fast);
}
.inquiry-form-group input:focus, .inquiry-form-group textarea:focus { outline: none; border-color: var(--red); }
.inquiry-form-group input[readonly] { background: var(--grey-100); color: var(--grey-600); cursor: not-allowed; }

