:root {
  --black: #050505;
  --deep: #0a0a0a;
  --surface: #111111;
  --border: #1e1e1e;
  --muted: #2a2a2a;
  --smoke: #3a3a3a;
  --text-dim: #666;
  --text-mid: #999;
  --text: #ccc;
  --white: #f0ede8;
  --red: #A8004C;
  --red-hot: #FF0073;
  --red-glow: #FF52A0;
  --gold: #b8860b;
  --gold-light: #d4a017;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--red-glow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 0 20px var(--red-glow), 0 0 40px rgba(255,34,34,0.3);
}
#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,34,34,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}
body:hover #cursor { opacity: 1; }

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.35;
}

.spacer {
  flex: 1 1 auto;
  place-self: stretch;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(5,5,5,0.95), transparent);
}
.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo img {
  height: 3rem;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--red-hot);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(139,0,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(139,0,0,0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,30,30,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,30,30,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  place-items: center;
}

figure {
  width: 100%;
  text-align: center;
}

figure img {
  width: 256px;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-sub {
  margin: 2rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-sub span {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-sub .dot {
  width: 4px; height: 4px;
  background: var(--red-hot);
  border-radius: 50%;
}

.hero-cta {
  margin-top: 3.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover {
  background: var(--red-hot);
  color: var(--white);
  box-shadow: 0 0 40px rgba(192,57,43,0.4);
}

.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  border: 1px solid var(--border);
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--smoke); color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red-hot), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  background: var(--red);
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255,34,34,0.2);
  border-bottom: 1px solid rgba(255,34,34,0.2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.9);
  padding: 0 3rem;
  white-space: nowrap;
}
.marquee-item .sep { color: rgba(255,255,255,0.4); margin: 0 1rem; }

/* SECTIONS */
section { padding: 8rem 3rem; }

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--text-dim);
}

/* ABOUT */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-frame {
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-frame-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(139,0,0,0.25) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.015) 2px,
      rgba(255,255,255,0.015) 4px
    );
}

.about-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.about-frame-deco {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--border);
}

.about-frame-text {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
}

.about-frame-text .big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.4;
}

.about-tag {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}

.about-body p {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.about-body p strong { color: var(--white); font-weight: 400; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

/* WORK GRID */
#work {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.work-header {
  max-width: 1400px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.work-filters {
  display: flex;
  gap: 0.5rem;
}
.filter-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  cursor: none;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  color: var(--white);
  border-color: var(--red-hot);
  background: rgba(192,57,43,0.1);
}

.work-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}

.work-item {
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: border-color 0.3s;
}
.work-item:hover { border-color: var(--smoke); }
.work-item:hover .work-overlay { opacity: 1; }
.work-item:hover .work-img-inner { transform: scale(1.05); }

.work-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.work-item:nth-child(2) { grid-column: span 5; }
.work-item:nth-child(3) { grid-column: span 5; }
.work-item:nth-child(4) { grid-column: span 4; }
.work-item:nth-child(5) { grid-column: span 4; }
.work-item:nth-child(6) { grid-column: span 4; }

.work-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.work-item:nth-child(1) .work-img { aspect-ratio: 3/2; }

.work-img-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Placeholder art using CSS patterns */
.art-1 { background: radial-gradient(ellipse at 40% 30%, #3d0000 0%, #1a0000 40%, #050505 100%), repeating-conic-gradient(from 0deg at 50% 50%, #0a0a0a 0deg, #111 10deg, #0a0a0a 20deg); }
.art-2 { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%); position: relative; overflow: hidden; }
.art-2::after { content: ''; position: absolute; inset: 10%; border: 2px solid rgba(139,0,0,0.5); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.art-3 { background: radial-gradient(ellipse at 60% 70%, #2d0000 0%, #0a0a0a 70%); }
.art-4 { background: repeating-linear-gradient(-45deg, #0a0a0a 0px, #0a0a0a 10px, #111 10px, #111 20px); }
.art-5 { background: radial-gradient(ellipse at 20% 80%, #1a0000 0%, #050505 60%), radial-gradient(ellipse at 80% 20%, #0d0d0d 0%, transparent 50%); }
.art-6 { background: conic-gradient(from 180deg at 50% 50%, #0a0a0a, #1e0000, #0a0a0a, #150000, #0a0a0a); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.85);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.work-overlay-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 0.5rem;
}

.work-overlay-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-style: italic;
}

.work-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(5,5,5,0.8);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}

/* SERVICES */
#services {
  max-width: 1400px;
  margin: 0 auto;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  margin-top: 5rem;
}

.services-sticky {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.services-desc {
  font-size: 0.8rem;
  line-height: 2;
  color: var(--text-dim);
  margin-top: 1.5rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: padding 0.3s;
  cursor: none;
}
.service-item:last-child { border-bottom: 1px solid var(--border); }
.service-item:hover { padding-left: 1rem; }
.service-item:hover .service-arrow { transform: translateX(4px); color: var(--red-hot); }

.service-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
  padding-top: 0.3rem;
}

.service-body {}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.service-detail {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.service-arrow {
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: transform 0.3s, color 0.3s;
  padding-top: 0.5rem;
}

/* PROCESS */
#process {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
}

.process-step {
  border-left: 1px solid var(--border);
  padding: 3rem 2rem 3rem;
  position: relative;
  transition: background 0.3s;
}
.process-step:hover { background: rgba(139,0,0,0.04); }

.process-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.process-step:hover .process-step-num { color: var(--red); }

.process-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-style: italic;
}

.process-step-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* TESTIMONIALS */
#testimonials {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { border-color: var(--smoke); }

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--border);
  line-height: 1;
}

.testimonial-text {
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--muted);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.author-name { font-size: 0.75rem; color: var(--white); }
.author-tag { font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.1em; }

/* BOOKING */
#booking {
  background: linear-gradient(135deg, var(--deep) 0%, rgba(139,0,0,0.08) 100%);
  border-top: 1px solid rgba(139,0,0,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(139,0,0,0.15) 0%, transparent 70%);
}

.booking-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.booking-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--white);
  line-height: 0.9;
  margin: 2rem 0;
  letter-spacing: 0.05em;
}

.booking-big span { color: var(--red-hot); text-shadow: 0 0 60px rgba(192,57,43,0.4); }

.booking-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.booking-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.booking-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  padding: 1rem 1.5rem;
  outline: none;
  transition: border-color 0.3s;
}
.booking-input:focus { border-color: var(--smoke); }
.booking-input::placeholder { color: var(--text-dim); }

.booking-submit {
  background: var(--red-hot);
  border: none;
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: none;
  transition: background 0.3s, box-shadow 0.3s;
}
.booking-submit:hover {
  background: var(--red);
  box-shadow: 0 0 30px rgba(192,57,43,0.4);
}

/* FOOTER */
footer {
  padding: 4rem 3rem 3rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
}
.footer-logo img { height: 3rem; filter: grayscale(1) opacity(.7); }

.footer-tagline {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  line-height: 1.7;
}

.footer-nav-title {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav-list a {
  font-size: 0.8rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav-list a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-link {
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.7rem;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--red-hot);
  color: var(--red-hot);
  box-shadow: 0 0 20px rgba(192,57,43,0.2);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-text {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}
@keyframes glitch {
  0% { clip-path: inset(40% 0 61% 0); transform: skew(0.3deg); }
  20% { clip-path: inset(92% 0 1% 0); transform: skew(-0.1deg); }
  40% { clip-path: inset(43% 0 1% 0); transform: skew(0.5deg); }
  60% { clip-path: inset(25% 0 58% 0); transform: skew(-0.2deg); }
  80% { clip-path: inset(54% 0 7% 0); transform: skew(0.4deg); }
  100% { clip-path: inset(58% 0 43% 0); transform: skew(-0.1deg); }
}

.glitch-wrap { position: relative; }
.glitch-wrap::before, .glitch-wrap::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  font-family: inherit; font-size: inherit; font-weight: inherit; color: inherit;
}
.glitch-wrap::before {
  color: var(--red-glow);
  animation: glitch 3s infinite linear alternate-reverse;
  opacity: 0;
}
.glitch-wrap::after {
  color: cyan;
  animation: glitch 2s infinite linear alternate-reverse;
  animation-delay: 0.5s;
  opacity: 0;
}
.glitch-wrap:hover::before, .glitch-wrap:hover::after { opacity: 0.15; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* LOADING SCREEN */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.loader-logo img { width: 128px; animation: wiggle 1s linear infinite; }

@keyframes wiggle {
  0% { transform: rotate(0); }
  25% { transform: rotate(15deg); }
  50% { transform: rotate(0); }
  75% { transform: rotate(-15deg); }
  100% { transform: rotate(0); }
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.loader-fill {
  position: absolute;
  inset: 0;
  background: var(--red-hot);
  transform: scaleX(0);
  transform-origin: left;
  animation: load 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.loader-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.3em;
}

@keyframes load {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* PARALLAX DECO */
.deco-cross {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.2;
}
.deco-cross::before, .deco-cross::after {
  content: '';
  position: absolute;
  background: var(--red-hot);
}
.deco-cross::before { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.deco-cross::after { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }