/* ===== Studio77 — Main Stylesheet ===== */

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
  --red: #F32218;
  --red-glow: rgba(243,34,24,0.35);
  --bg: #060606;
  --bg2: #0B0B0B;
  --bg3: #111;
  --text: #EDEDED;
  --dim: #888;
  --muted: #555;
  --display: 'Bebas Neue', sans-serif;
  --body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--bg);
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* Noise overlay */
body::after {
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* ===== Custom Cursor ===== */
.cursor {
  width: 20px; height: 20px;
  border: 2px solid var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transition: width .2s, height .2s, background .2s;
  will-change: transform;
  transform: translate(-50%, -50%);
}
.cursor.hover { width: 60px; height: 60px; background: rgba(243,34,24,.15); }
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10001;
  will-change: transform;
  transform: translate(-50%, -50%);
}

/* ===== Layout ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(24px,5vw,64px); }

/* ===== Reveal Animations ===== */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.vis { opacity: 1; transform: none; }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }
.rd4 { transition-delay: .4s; }
.rd5 { transition-delay: .5s; }

/* ===== Navigation ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 24px 0;
  transition: all .4s ease;
}
nav.scrolled {
  background: rgba(6,6,6,.88);
  backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { width: 42px; height: 42px; transition: transform .3s; }
.nav-logo:hover img { transform: rotate(-8deg) scale(1.08); }
.nav-logo span { font-family: var(--display); font-size: 1.5rem; letter-spacing: 4px; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--dim);
  position: relative; padding: 4px 0;
  transition: color .3s; text-decoration: none;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { color: var(--red) !important; border: 1px solid var(--red); padding: 10px 24px !important; transition: all .3s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red) !important; color: #fff !important; box-shadow: 0 0 40px var(--red-glow); }
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text); transition: all .3s; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 75vw; height: 100vh;
    flex-direction: column; justify-content: center; gap: 32px;
    background: var(--bg2); transition: right .4s cubic-bezier(.16,1,.3,1); padding: 40px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; color: var(--text); }
}

/* ===== Hero ===== */
.hero { height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 75%, rgba(243,34,24,.07) 0%, transparent 50%),
              radial-gradient(ellipse at 75% 25%, rgba(243,34,24,.04) 0%, transparent 50%),
              var(--bg);
}
.hero-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(243,34,24,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(243,34,24,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse, black 20%, transparent 70%);
  animation: gridPulse 6s ease-in-out infinite;
}
@keyframes gridPulse { 0%,100% { opacity: .6; } 50% { opacity: 1; } }
.hero-content { text-align: center; position: relative; z-index: 2; }
.hero-logo {
  width: 150px; height: 150px; margin: 0 auto 36px;
  animation: logoIn 1.4s cubic-bezier(.16,1,.3,1) forwards; opacity: 0;
  filter: drop-shadow(0 0 60px rgba(243,34,24,.25));
}
@keyframes logoIn {
  0% { opacity: 0; transform: scale(.4) rotate(-15deg); filter: blur(20px) drop-shadow(0 0 60px rgba(243,34,24,.25)); }
  100% { opacity: 1; transform: none; filter: blur(0) drop-shadow(0 0 60px rgba(243,34,24,.25)); }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(4.5rem,13vw,11rem);
  letter-spacing: clamp(6px,1.5vw,16px);
  line-height: .92;
  animation: textIn 1s .4s cubic-bezier(.16,1,.3,1) forwards; opacity: 0;
}
.hero h1 span { color: var(--red); text-shadow: 0 0 80px var(--red-glow); }
@keyframes textIn {
  0% { opacity: 0; transform: translateY(50px); filter: blur(8px); }
  100% { opacity: 1; transform: none; filter: none; }
}
.hero-tagline {
  font-size: clamp(.85rem,1.4vw,1.05rem);
  letter-spacing: clamp(4px,1vw,8px);
  text-transform: uppercase; color: var(--dim);
  margin-top: 20px; font-weight: 300;
  animation: textIn 1s .7s cubic-bezier(.16,1,.3,1) forwards; opacity: 0;
}
.hero-ctas {
  display: flex; gap: 20px; justify-content: center; margin-top: 52px;
  animation: textIn 1s 1s cubic-bezier(.16,1,.3,1) forwards; opacity: 0; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: .82rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px 40px; border: none; cursor: pointer;
  overflow: hidden; transition: all .35s; text-decoration: none;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 12px 50px var(--red-glow); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,.15); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(5px); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeIn 1s 1.5s forwards; opacity: 0;
}
@keyframes fadeIn { to { opacity: 1; } }
.hero-scroll span { font-size: .65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); }
.scroll-bar { width: 1px; height: 48px; position: relative; overflow: hidden; }
.scroll-bar::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 1px; height: 100%;
  background: var(--red); animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }

/* ===== Section Labels & Headers ===== */
.label {
  font-size: .72rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.label::before { content: ''; width: 32px; height: 1px; background: var(--red); }
.sec-head { text-align: center; margin-bottom: clamp(52px,7vw,90px); }
.sec-head h2 { font-family: var(--display); font-size: clamp(3rem,7vw,5.5rem); letter-spacing: 8px; }
.sec-head p { color: var(--dim); font-weight: 300; max-width: 560px; margin: 16px auto 0; font-size: 1.02rem; line-height: 1.75; }
.section-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(243,34,24,.25), transparent); }

/* ===== About ===== */
.about { padding: clamp(100px,14vw,180px) 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(48px,7vw,120px); align-items: center; }
.about h2 { font-family: var(--display); font-size: clamp(2.6rem,5vw,4.8rem); letter-spacing: 5px; line-height: 1.02; margin-bottom: 28px; }
.about h2 em { font-style: normal; color: var(--red); }
.about p { font-size: clamp(.92rem,1.1vw,1.05rem); line-height: 1.85; color: var(--dim); font-weight: 300; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 44px; }
.stat { border-left: 2px solid var(--red); padding-left: 18px; transition: transform .3s; }
.stat:hover { transform: translateX(6px); }
.stat-num { font-family: var(--display); font-size: clamp(2.2rem,3.5vw,3.2rem); color: var(--red); letter-spacing: 2px; line-height: 1; }
.stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 6px; }
.about-visual { position: relative; height: 520px; overflow: hidden; }
.about-visual-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0a08, #0d0d0d, #1a0a08);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(243,34,24,.08);
}
.about-visual::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(243,34,24,.15);
  transform: translate(14px,14px); pointer-events: none;
  transition: transform .5s;
}
.about-visual:hover::after { transform: translate(8px,8px); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 340px; }
}

/* ===== Rooms ===== */
.rooms { padding: clamp(100px,14vw,180px) 0; background: var(--bg2); position: relative; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr)); gap: 28px; }
.room-card {
  background: var(--bg3); border: 1px solid rgba(255,255,255,.03);
  overflow: hidden; transition: all .5s cubic-bezier(.16,1,.3,1); transform-style: preserve-3d;
}
.room-card:hover { transform: translateY(-10px) rotateX(2deg); box-shadow: 0 30px 80px rgba(0,0,0,.6); border-color: rgba(243,34,24,.1); }
.room-card-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; position: relative; background: linear-gradient(135deg, #1a0808, #0d0d0d); }
.room-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(transparent, var(--bg3)); pointer-events: none; z-index: 1;
}
.room-card-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  transition: all .6s;
}
.room-card:hover .room-card-placeholder { transform: scale(1.06); }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.img-label { font-family: var(--display); font-size: 1.5rem; letter-spacing: 6px; color: rgba(255,255,255,.05); user-select: none; }
.room-card-body { padding: 28px 30px 32px; }
.room-card-name { font-family: var(--display); font-size: 1.9rem; letter-spacing: 3px; margin-bottom: 12px; transition: color .3s; }
.room-card:hover .room-card-name { color: var(--red); }
.room-card-desc { font-size: .88rem; line-height: 1.75; color: var(--dim); font-weight: 300; margin-bottom: 20px; }
.room-gear { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.gear-tag {
  font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); border: 1px solid rgba(255,255,255,.06); padding: 5px 12px; transition: all .3s;
}
.room-card:hover .gear-tag { border-color: rgba(243,34,24,.12); color: var(--dim); }
.room-price {
  display: inline-flex; font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; padding: 9px 18px; color: var(--red);
  border: 1px solid rgba(243,34,24,.25); background: rgba(243,34,24,.04);
}

@media (max-width: 768px) { .rooms-grid { grid-template-columns: 1fr; } }

/* ===== Staff ===== */
.staff { padding: clamp(100px,14vw,180px) 0; position: relative; }
.staff-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: clamp(48px,6vw,72px); flex-wrap: wrap; }
.staff-tab {
  font-family: var(--display); font-size: 1.2rem; letter-spacing: 3px;
  padding: 12px 32px; background: transparent;
  border: 1px solid rgba(255,255,255,.08); color: var(--dim);
  cursor: pointer; transition: all .3s; text-transform: uppercase;
}
.staff-tab:hover { border-color: rgba(243,34,24,.3); color: var(--text); }
.staff-tab.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 30px var(--red-glow); }
.staff-panel { display: none; animation: panelIn .5s cubic-bezier(.16,1,.3,1); }
.staff-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 32px; justify-items: center; }
.staff-card {
  background: var(--bg3); border: 1px solid rgba(255,255,255,.04);
  overflow: hidden; max-width: 400px; width: 100%;
  transition: all .5s cubic-bezier(.16,1,.3,1); transform-style: preserve-3d;
}
.staff-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,.6); border-color: rgba(243,34,24,.12); }
.staff-card-photo { width: 100%; height: 420px; overflow: hidden; position: relative; }
.staff-card-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: grayscale(30%) contrast(1.1); transition: all .6s;
}
.staff-card:hover .staff-card-photo img { filter: grayscale(0%); transform: scale(1.05); }
.staff-card-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(transparent, var(--bg3)); pointer-events: none;
}
.staff-card-info { padding: 24px 28px 32px; }
.staff-card-name { font-family: var(--display); font-size: 2rem; letter-spacing: 4px; margin-bottom: 4px; transition: color .3s; }
.staff-card:hover .staff-card-name { color: var(--red); }
.staff-card-role { font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 12px; }
.staff-card-bio { font-size: .88rem; line-height: 1.7; color: var(--dim); font-weight: 300; margin-bottom: 16px; }
.staff-socials { display: flex; gap: 12px; }
.staff-socials a {
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); border: 1px solid rgba(255,255,255,.08);
  padding: 6px 14px; transition: all .3s; text-decoration: none;
}
.staff-socials a:hover { border-color: var(--red); color: var(--red); }

/* ===== Clients Marquee ===== */
.clients { padding: clamp(100px,14vw,180px) 0; overflow: hidden; background: var(--bg2); position: relative; }
.marquee-wrap { margin-top: clamp(40px,5vw,64px); position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 160px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }
.marquee { display: flex; width: max-content; }
.marquee:hover { animation-play-state: paused !important; }
.m1 { animation: mq 35s linear infinite; }
.m2 { animation: mq 40s linear infinite reverse; }
.m3 { animation: mq 32s linear infinite; }
.m4 { animation: mq 37s linear infinite reverse; }
@keyframes mq { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--display); font-size: clamp(1.8rem,3.5vw,3.2rem);
  letter-spacing: 4px; white-space: nowrap;
  padding: 0 clamp(16px,2.5vw,36px); color: rgba(255,255,255,.12);
  transition: all .3s; position: relative;
}
.marquee-item:hover { color: var(--red); text-shadow: 0 0 50px var(--red-glow); }
.marquee-item::after { content: '\00b7'; position: absolute; right: -2px; color: rgba(243,34,24,.2); }
.marquee-row { margin-bottom: 14px; }

/* ===== Services ===== */
.services { padding: clamp(100px,14vw,180px) 0; position: relative; }
.services .container { max-width: 1600px; padding: 0 clamp(16px,3vw,32px); }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.svc {
  padding: 40px 36px; border: 1px solid rgba(255,255,255,.03);
  background: rgba(255,255,255,.01); position: relative; overflow: hidden; transition: all .4s;
}
.svc::before {
  content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width .5s cubic-bezier(.16,1,.3,1);
}
.svc::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(243,34,24,.04), transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.svc:hover { border-color: rgba(243,34,24,.12); transform: translateY(-4px); }
.svc:hover::before { width: 100%; }
.svc:hover::after { opacity: 1; }
.svc-icon { font-size: 1.6rem; margin-bottom: 22px; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; position: relative; z-index: 1; }
.svc-title { font-family: var(--display); font-size: 1.5rem; letter-spacing: 3px; margin-bottom: 10px; position: relative; z-index: 1; min-height: 2.2em; display: flex; align-items: flex-start; }
.svc-desc { font-size: .86rem; color: var(--dim); line-height: 1.75; font-weight: 300; position: relative; z-index: 1; }

/* ===== Beat Store ===== */
.beats { padding: clamp(100px,14vw,180px) 0; background: var(--bg2); position: relative; }
.beats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.beat-card {
  background: var(--bg3); border: 1px solid rgba(255,255,255,.04);
  padding: 28px; overflow: hidden; transition: all .4s; position: relative;
}
.beat-card:hover { border-color: rgba(243,34,24,.15); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.beat-play {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--red); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s; flex-shrink: 0;
}
.beat-play:hover { background: var(--red); box-shadow: 0 0 30px var(--red-glow); }
.beat-play svg { width: 18px; height: 18px; fill: var(--red); transition: fill .3s; }
.beat-play:hover svg { fill: #fff; }
.beat-info { flex: 1; min-width: 0; }
.beat-title { font-family: var(--display); font-size: 1.4rem; letter-spacing: 2px; }
.beat-meta { font-size: .75rem; color: var(--muted); letter-spacing: 1px; }
.beat-tags { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.beat-tag { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); border: 1px solid rgba(255,255,255,.06); padding: 4px 10px; }
.beat-pricing { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.beat-price-option {
  font-size: .72rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,.08);
  color: var(--dim); cursor: pointer; transition: all .3s;
  background: transparent; font-family: var(--body);
}
.beat-price-option:hover, .beat-price-option.selected { border-color: var(--red); color: var(--red); background: rgba(243,34,24,.05); }
.beat-buy {
  width: 100%; padding: 14px; font-family: var(--body); font-size: .8rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  background: var(--red); color: #fff; border: none; cursor: pointer; transition: all .3s;
}
.beat-buy:hover { box-shadow: 0 8px 30px var(--red-glow); transform: translateY(-2px); }
.beat-menu-wrap { position: relative; }
.beat-dots {
  background: none; border: none; color: var(--dim); cursor: pointer;
  font-size: 1.4rem; padding: 8px; line-height: 1; letter-spacing: 3px; transition: color .3s;
}
.beat-dots:hover { color: var(--text); }
.beat-dropdown {
  display: none; position: absolute; right: 0; top: 100%;
  background: var(--bg2); border: 1px solid rgba(255,255,255,.08);
  min-width: 180px; z-index: 50; box-shadow: 0 12px 40px rgba(0,0,0,.6);
}
.beat-dropdown.open { display: block; animation: dropIn .2s ease; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.beat-dropdown button {
  display: block; width: 100%; text-align: left; padding: 12px 18px;
  background: none; border: none; border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--dim); font-family: var(--body); font-size: .8rem;
  letter-spacing: 1px; cursor: pointer; transition: all .2s;
}
.beat-dropdown button:last-child { border-bottom: none; }
.beat-dropdown button:hover { background: rgba(243,34,24,.06); color: var(--text); }

/* ===== Audio Bar ===== */
.audio-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(11,11,11,.96); backdrop-filter: blur(24px);
  border-top: 1px solid rgba(243,34,24,.15);
  padding: 0 24px; z-index: 999; display: none;
  align-items: center; gap: 16px; height: 72px;
}
.audio-bar.active { display: flex; }
.ab-play {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--red); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: all .3s;
}
.ab-play:hover { background: var(--red); }
.ab-play svg { width: 14px; height: 14px; fill: var(--red); transition: fill .3s; }
.ab-play:hover svg { fill: #fff; }
.ab-center { flex: 1; min-width: 0; }
.ab-title { font-family: var(--display); font-size: 1rem; letter-spacing: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ab-time { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.ab-progress { flex: 1; height: 4px; background: rgba(255,255,255,.08); cursor: pointer; border-radius: 2px; position: relative; }
.ab-fill { height: 100%; background: var(--red); width: 0; border-radius: 2px; }
.ab-ts { font-size: .7rem; color: var(--muted); min-width: 36px; font-variant-numeric: tabular-nums; }
.ab-cart {
  padding: 8px 20px; background: var(--red); color: #fff; border: none;
  font-family: var(--body); font-size: .7rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: all .3s; white-space: nowrap;
}
.ab-cart:hover { box-shadow: 0 4px 20px var(--red-glow); }
.ab-close { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.2rem; padding: 8px; transition: color .3s; }
.ab-close:hover { color: var(--text); }

/* ===== Forms ===== */
.signup-input {
  flex: 1; padding: 14px 20px; background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06); color: var(--text);
  font-family: var(--body); font-size: .9rem; outline: none; transition: border-color .3s;
}
.signup-input:focus { border-color: rgba(243,34,24,.3); }
.signup-btn {
  padding: 14px 28px; background: var(--red); color: #fff; border: none;
  font-family: var(--body); font-size: .8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: all .3s; white-space: nowrap;
}
.signup-btn:hover { box-shadow: 0 8px 30px var(--red-glow); }

/* ===== CTA / Contact ===== */
.cta { padding: clamp(120px,16vw,220px) 0; text-align: center; position: relative; }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(243,34,24,.06) 0%, transparent 55%);
}
.cta-inner { position: relative; z-index: 2; }
.cta h2 { font-family: var(--display); font-size: clamp(3.2rem,9vw,8rem); letter-spacing: clamp(6px,1vw,12px); line-height: .95; margin-bottom: 24px; }
.cta h2 span { color: var(--red); text-shadow: 0 0 80px var(--red-glow); }
.cta-inner > p { font-size: 1.05rem; color: var(--dim); font-weight: 300; max-width: 480px; margin: 0 auto 44px; line-height: 1.75; }
.cta-info { display: flex; justify-content: center; gap: 60px; margin-top: 56px; flex-wrap: wrap; }
.cta-info-label { font-size: .68rem; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.cta-info-val { font-family: var(--display); font-size: 1.5rem; letter-spacing: 3px; transition: color .3s; }
.cta-info-val:hover { color: var(--red); }
.cta-info-val a { color: inherit; text-decoration: none; }

/* ===== Footer ===== */
footer { padding: 36px 0; border-top: 1px solid rgba(255,255,255,.04); }
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer p { font-size: .78rem; color: var(--muted); letter-spacing: 1px; }
footer a { color: var(--dim); text-decoration: none; transition: color .3s; }
footer a:hover { color: var(--red); }

/* ===== Modals ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 10002; display: none; align-items: center; justify-content: center;
  animation: modalBgIn .3s ease;
}
.modal-overlay.active { display: flex; }
@keyframes modalBgIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg2); border: 1px solid rgba(255,255,255,.06);
  max-width: 480px; width: 90%; max-height: 90vh; overflow-y: auto;
  position: relative; animation: modalIn .4s cubic-bezier(.16,1,.3,1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(.95); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  color: var(--dim); font-size: 1.5rem; cursor: pointer; transition: color .3s; z-index: 2; padding: 4px 8px;
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 40px 36px; }
.modal-title { font-family: var(--display); font-size: 2rem; letter-spacing: 4px; margin-bottom: 8px; }
.modal-sub { font-size: .88rem; color: var(--dim); font-weight: 300; margin-bottom: 24px; line-height: 1.6; }

/* Checkout */
.checkout-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.checkout-item-name { font-family: var(--display); font-size: 1.2rem; letter-spacing: 2px; }
.checkout-item-detail { font-size: .78rem; color: var(--dim); }
.checkout-item-price { font-family: var(--display); font-size: 1.3rem; color: var(--red); letter-spacing: 2px; }
.checkout-total { display: flex; justify-content: space-between; padding: 20px 0; font-family: var(--display); font-size: 1.5rem; letter-spacing: 3px; }
.checkout-total span:last-child { color: var(--red); }
.payment-methods { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.pay-btn {
  width: 100%; padding: 14px; font-family: var(--body); font-size: .82rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.08); background: transparent;
  color: var(--dim); cursor: pointer; transition: all .3s; text-align: center;
}
.pay-btn:hover { border-color: var(--red); color: var(--red); background: rgba(243,34,24,.04); }
.pay-btn.primary { background: var(--red); border-color: var(--red); color: #fff; }
.pay-btn.primary:hover { box-shadow: 0 8px 30px var(--red-glow); }
.pay-divider {
  text-align: center; font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); padding: 8px 0; position: relative;
}
.pay-divider::before, .pay-divider::after { content: ''; position: absolute; top: 50%; width: 35%; height: 1px; background: rgba(255,255,255,.06); }
.pay-divider::before { left: 0; }
.pay-divider::after { right: 0; }

/* Promo */
.promo-modal .modal { max-width: 440px; text-align: center; overflow: visible; }
.promo-modal .modal-body { padding: 48px 40px; }
.promo-glow {
  position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--red), transparent, var(--red));
  opacity: .15; z-index: -1; filter: blur(20px);
}

/* ===== Misc ===== */
.magnetic { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader img { width: 80px; height: 80px; animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: .6; } }

/* ===== Mobile Overrides ===== */
@media (max-width: 768px) {
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .about-stats { gap: 20px; }
  .cta-info { gap: 36px; }
  .btn { padding: 14px 32px; }
  .staff-card-photo { height: 320px; }
  .services-grid { grid-template-columns: 1fr; }
}
