/* ============================================
   NOISEMAKERS — Where Sound Becomes Art
   Premium Portfolio Stylesheet
   ============================================ */

/* ============ CSS VARIABLES ============ */
:root {
  --bg: #050505;
  --bg-2: #111111;
  --bg-3: #222222;
  --text: #ffffff;
  --text-dim: #bdbdbd;
  --accent: #00c8ff;
  --accent-2: #0088ff;
  --accent-glow: rgba(0, 200, 255, 0.4);

  --grad-accent: linear-gradient(135deg, #00c8ff 0%, #0088ff 50%, #00c8ff 100%);
  --grad-dark: linear-gradient(180deg, #050505 0%, #111111 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;

  --section-pad: clamp(2rem, 6vw, 4rem);
  --container: 1400px;

  --ease: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

[data-theme="light"] {
  --bg: #f5f5f7;
  --bg-2: #ffffff;
  --bg-3: #e8e8ea;
  --text: #0a0a0a;
  --text-dim: #555;
  --grad-glass: linear-gradient(135deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.02) 100%);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============ UTILITIES ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.gradient-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--grad-accent);
  z-index: 9999;
  box-shadow: 0 0 10px var(--accent-glow);
  transition: width 0.1s linear;
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  transition: transform 0.25s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: var(--text); background: rgba(0,200,255,0.08); }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body, button, a { cursor: auto; }
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10001;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo { position: relative; margin-bottom: 2rem; }
.loader-n {
  font-family: var(--font-display);
  font-size: 6rem;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
.loader-waves {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; height: 40px; margin-top: 1rem;
}
.loader-waves span {
  width: 3px; height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-glow);
}
.loader-waves span:nth-child(1) { animation-delay: 0s; }
.loader-waves span:nth-child(2) { animation-delay: 0.1s; }
.loader-waves span:nth-child(3) { animation-delay: 0.2s; }
.loader-waves span:nth-child(4) { animation-delay: 0.3s; }
.loader-waves span:nth-child(5) { animation-delay: 0.4s; }
.loader-waves span:nth-child(6) { animation-delay: 0.5s; }
.loader-waves span:nth-child(7) { animation-delay: 0.6s; }
.loader-waves span:nth-child(8) { animation-delay: 0.7s; }
.loader-waves span:nth-child(9) { animation-delay: 0.8s; }
@keyframes wave {
  0%, 100% { height: 10%; }
  50% { height: 100%; }
}
.loader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.loader-percent {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.loader-bar {
  width: 200px; height: 2px;
  background: var(--bg-3);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: var(--grad-accent);
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ============ BACKGROUND EFFECTS ============ */
.bg-canvas {
  position: fixed; inset: 0;
  z-index: -2;
  pointer-events: none;
}
.bg-gradient-orbs {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--accent); top: -200px; left: -200px; }
.orb-2 { width: 400px; height: 400px; background: #ff00aa; bottom: -150px; right: -150px; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: #0088ff; top: 50%; left: 50%; animation-delay: -14s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -50px) scale(1.1); }
  66% { transform: translate(-80px, 60px) scale(0.9); }
}

/* ============ PAGE SYSTEM ============ */
.page-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.page {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s var(--ease), visibility 0.6s, transform 0.6s var(--ease);
  pointer-events: none;
}
.page.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.page-inner {
  height: 100vh;
  padding: 6rem clamp(1.25rem, 4vw, 3rem) 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* ============ SHARE BUTTON ============ */
.share-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 52px;
  height: 52px;
  background: var(--grad-accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--accent-glow), 0 10px 30px rgba(0,0,0,0.4);
  z-index: 998;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.share-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 40px var(--accent-glow), 0 15px 40px rgba(0,0,0,0.5);
}
.share-btn svg { width: 22px; height: 22px; }

.share-popup {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px);
  z-index: 1004;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.share-popup.open { opacity: 1; visibility: visible; }
.share-popup-inner {
  position: relative;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.share-popup.open .share-popup-inner { transform: translateY(0); }
.share-popup-inner h5 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-align: center;
}
.share-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.share-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.share-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,200,255,0.15);
}
.share-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.share-copy { cursor: none; width: 100%; grid-column: 1 / -1; justify-content: flex-start; }
.share-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  transition: all 0.3s;
}
.share-close:hover { background: var(--accent); color: var(--bg); }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1000;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.6rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
[data-theme="light"] .nav.scrolled { background: rgba(245,245,247,0.7); }

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
.logo-mark {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-accent);
  color: var(--bg);
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 0 20px var(--accent-glow);
}
.logo-text { display: none; }
@media (min-width: 768px) { .logo-text { display: inline; } }

.nav-menu {
  display: none;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1100px) { .nav-menu { display: flex; } }

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.25rem;
  background: var(--grad-accent);
  color: var(--bg);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px var(--accent-glow);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-glow);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.theme-toggle, .search-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, border-color 0.3s;
}
.theme-toggle:hover, .search-btn:hover { border-color: var(--accent); }
.theme-toggle svg, .search-btn svg { width: 18px; height: 18px; }
.icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.hamburger {
  display: flex; flex-direction: column;
  gap: 5px; width: 30px; height: 30px;
  justify-content: center;
}
@media (min-width: 1100px) { .hamburger { display: none; } }
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu.mobile-open {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  z-index: 999;
  animation: fadeIn 0.4s var(--ease);
}
.nav-menu.mobile-open .nav-link { font-size: 1.25rem; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============ HERO ============ */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.9) 100%);
}
.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  padding-top: 5rem;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  width: fit-content;
}
.tag-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.title-line { display: block; }
.hero-subtitle {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  color: var(--text-dim);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.subtitle-label { color: var(--text-dim); }
.typing { color: var(--accent); font-weight: 500; }
.typing-cursor {
  color: var(--accent);
  animation: blink 1s infinite;
  font-weight: 100;
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.hero-desc {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex; gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--grad-accent);
  color: var(--bg);
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px var(--accent-glow); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-outline:hover { color: var(--text); border-color: var(--text); }

/* Hero equalizer */
.hero-equalizer {
  position: absolute;
  bottom: 8rem; right: 2rem;
  display: flex; gap: 4px; align-items: flex-end;
  height: 60px;
  z-index: 2;
}
.eq-bar {
  width: 4px;
  background: var(--grad-accent);
  border-radius: 2px;
  animation: eq 1s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-glow);
}
.eq-bar:nth-child(1) { animation-delay: 0s; }
.eq-bar:nth-child(2) { animation-delay: 0.1s; }
.eq-bar:nth-child(3) { animation-delay: 0.2s; }
.eq-bar:nth-child(4) { animation-delay: 0.3s; }
.eq-bar:nth-child(5) { animation-delay: 0.4s; }
.eq-bar:nth-child(6) { animation-delay: 0.5s; }
.eq-bar:nth-child(7) { animation-delay: 0.6s; }
.eq-bar:nth-child(8) { animation-delay: 0.7s; }
@keyframes eq {
  0%, 100% { height: 20%; }
  50% { height: 100%; }
}

/* ============ TRADEMARK SECTION ============ */
.trademark {
  position: relative;
  padding: 1rem 0 0.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 3;
}
.trademark-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.trademark-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trademark-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.trademark-text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
.trademark-text span {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  font-style: italic;
}
.trademark-socials {
  display: flex;
  gap: 0.5rem;
}
.trademark-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.trademark-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--accent-glow);
}
.trademark-socials svg { width: 15px; height: 15px; }
.trademark-powered {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(255,255,255,0.05);
}
.trademark-powered strong {
  color: var(--accent);
  font-weight: 600;
}

/* ============ SECTION HEADS ============ */
.section-head {
  text-align: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.section-desc {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ============ ABOUT PAGE ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  flex: 1;
  min-height: 0;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; }
}
.about-image { position: relative; }
.about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 55vh;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.about-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-image-frame:hover img { transform: scale(1.05); }
.about-image-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0,200,255,0.2) 100%);
  mix-blend-mode: overlay;
}
.about-image-badge {
  position: absolute;
  bottom: -15px; right: -15px;
  padding: 1rem 1.5rem;
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateZ(30px);
}
.badge-year { font-size: 0.65rem; letter-spacing: 0.3em; color: var(--text-dim); }
.badge-num { font-family: var(--font-display); font-size: 2rem; color: var(--accent); line-height: 1; }
.badge-loc { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-dim); margin-top: 0.25rem; }

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.about-text {
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-text strong { color: var(--text); font-weight: 600; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  flex: 1;
  min-height: 0;
  align-content: start;
}
.service-card {
  padding: 1.5rem 1.25rem;
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
  cursor: none;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,200,255,0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px) rotateX(3deg) rotateY(-3deg);
  border-color: rgba(0,200,255,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--accent-glow);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-accent);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateZ(20px);
}
.service-icon svg { width: 24px; height: 24px; color: var(--bg); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============ COMING SOON ============ */
.coming-soon-page {
  justify-content: center;
  align-items: center;
}
.coming-soon {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  transform-style: preserve-3d;
}
.coming-soon-icon {
  width: 100px; height: 100px;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,200,255,0.3);
  border-radius: 24px;
  color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow), 0 20px 50px rgba(0,0,0,0.4);
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease);
}
.coming-soon-icon svg { width: 50px; height: 50px; }
.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.coming-soon-desc {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
  align-content: start;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  transform-style: preserve-3d;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.gallery-item:nth-child(3n+1) { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px var(--accent-glow);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ============ TESTIMONIALS ============ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
}
.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--ease);
  width: 100%;
}
.testimonial {
  flex: 0 0 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .testimonial { flex: 0 0 50%; }
}
@media (min-width: 1100px) {
  .testimonial { flex: 0 0 33.333%; }
}
.testimonial-card {
  padding: 1.75rem;
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  transform-style: preserve-3d;
}
.testimonial-card:hover {
  transform: translateY(-5px) rotateX(2deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow);
}
.testimonial-stars {
  display: flex; gap: 0.25rem;
  margin-bottom: 0.75rem;
  color: #ffc107;
  font-size: 1rem;
}
.testimonial-text {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonial-author h5 { font-size: 0.95rem; margin-bottom: 0.15rem; color: var(--accent); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-dim); }

.testimonials-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-shrink: 0;
}
.testi-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
  transition: all 0.3s;
}
.testi-btn:hover { border-color: var(--accent); color: var(--accent); }
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg-3);
  transition: all 0.3s;
  cursor: none;
}
.testi-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ============ BOOK FORM ============ */
.book-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 700px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(0,200,255,0.05);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: none; }
.btn-submit { width: 100%; justify-content: center; }
.wa-direct { width: 100%; justify-content: center; height: 100%; min-height: 44px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  flex: 1;
  min-height: 0;
  align-content: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; align-items: stretch; }
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; gap: 1rem;
  padding: 1.25rem;
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.contact-item:hover {
  border-color: var(--accent);
  transform: translateX(5px) translateZ(10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow);
}
.contact-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-accent);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--accent-glow);
}
.contact-icon svg { width: 20px; height: 20px; color: var(--bg); }
.contact-item h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}
.contact-item p, .contact-item a {
  font-size: 1rem;
  color: var(--text);
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--accent); }

.wa-big {
  background: var(--grad-accent);
  color: var(--bg);
  box-shadow: 0 0 30px var(--accent-glow);
  justify-content: center;
  padding: 1.25rem;
  font-size: 0.9rem;
  transform-style: preserve-3d;
}
.wa-big:hover {
  transform: translateY(-3px) translateZ(15px);
  box-shadow: 0 0 50px var(--accent-glow), 0 20px 40px rgba(0,0,0,0.5);
}

.contact-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 250px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  transform-style: preserve-3d;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.contact-map:hover {
  transform: translateZ(15px) rotateX(2deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 30px var(--accent-glow);
}
.map-placeholder {
  position: relative;
  width: 100%; height: 100%;
  min-height: 250px;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,200,255,0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,136,255,0.1), transparent 50%),
    var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin { position: relative; z-index: 2; }
.map-pin-dot {
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent);
  position: relative;
  z-index: 2;
}
.map-pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: mapPulse 2s ease-out infinite;
}
@keyframes mapPulse {
  0% { width: 20px; height: 20px; opacity: 1; }
  100% { width: 100px; height: 100px; opacity: 0; }
}
.map-label {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  z-index: 2;
}

/* ============ 3D TILT ============ */
.tilt-3d {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease);
}
.reveal-3d {
  opacity: 0;
  transform: translateY(30px) rotateX(-8deg);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-3d.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.95);
  z-index: 1003;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 50px; height: 50px;
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent); color: var(--bg);
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.5rem;
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  font-size: 0.9rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero-equalizer { display: none; }
  .hero-title { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .page-inner { padding: 5rem 1rem 0.5rem; }
  .book-form { padding: 1.25rem; }
  .trademark-inner { justify-content: center; text-align: center; }
  .trademark-socials { justify-content: center; }
  .share-btn { bottom: 1rem; left: 1rem; width: 46px; height: 46px; }
  .share-links { grid-template-columns: 1fr; }
  .about-image-frame { max-height: 40vh; }
  .coming-soon-icon { width: 80px; height: 80px; }
  .coming-soon-icon svg { width: 40px; height: 40px; }
}
