:root {
  --ink: #0a0a0b;
  --ink-2: #111114;
  --ink-3: #1a1a1f;
  --line: #2a2a31;
  --bone: #f4f1ea;
  --smoke: #9a9aa2;
  --amber: #ffb020;
  --amber-hot: #ff7a18;
  --red: #ff3b3b;
  --cyan: #6ce3ff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', sans-serif;
  background: var(--ink);
  color: var(--bone);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px; display: flex; justify-content: space-between; align-items: center;
  background: rgba(10,10,11,0.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Anton', sans-serif; font-size: 20px; letter-spacing: 0.08em; text-transform: none; color: var(--bone); }
.logo-bars { display: inline-flex; gap: 2px; height: 22px; align-items: flex-end; }
.logo-bars span { display: block; width: 3px; background: var(--amber); animation: eq 1.4s ease-in-out infinite; }
.logo-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.logo-bars span:nth-child(2) { height: 75%; animation-delay: 0.15s; background: var(--amber-hot); }
.logo-bars span:nth-child(3) { height: 100%; animation-delay: 0.3s; background: var(--red); }
.logo-bars span:nth-child(4) { height: 60%; animation-delay: 0.45s; background: var(--amber-hot); }
.logo-bars span:nth-child(5) { height: 30%; animation-delay: 0.6s; background: var(--amber); }
@keyframes eq { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }
.nav-links { display: flex; gap: 36px; font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }
.nav-links a { color: var(--smoke); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-links .mobile-cta { display: none; }
.nav-cta { padding: 10px 20px; border: 1px solid var(--amber); color: var(--amber); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; transition: all 0.25s; }
.nav-cta:hover { background: var(--amber); color: var(--ink); }
/* MOBILE NAV / HAMBURGER */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none; cursor: pointer; padding: 8px; margin-left: auto;
  position: relative; z-index: 103; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle-icon { display: block; width: 28px; height: 20px; position: relative; }
.nav-toggle-icon span { display: block; position: absolute; left: 0; right: 0; height: 2px; background: var(--bone); transition: all 0.3s ease; }
.nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle-icon span:nth-child(2) { top: 9px; }
.nav-toggle-icon span:nth-child(3) { top: 18px; }
.nav-toggle:checked ~ .nav .nav-toggle-label .nav-toggle-icon span:nth-child(1) { top: 9px; transform: rotate(45deg); background: var(--amber); }
.nav-toggle:checked ~ .nav .nav-toggle-label .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav .nav-toggle-label .nav-toggle-icon span:nth-child(3) { top: 9px; transform: rotate(-45deg); background: var(--amber); }

@media (max-width: 820px) {
  .nav { padding: 14px 20px; }
  .nav-toggle-label { display: flex; }
  .nav-cta { display: none !important; }
  .nav-links {
    display: flex !important;
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--ink);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; font-size: 20px; padding: 40px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 101;
  }
  .nav-links a { padding: 8px 0; color: var(--smoke); }
  .nav-links .mobile-cta {
    display: inline-block;
    margin-top: 20px; padding: 16px 28px; border: 1px solid var(--amber); color: var(--amber);
    font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.16em;
  }
  .nav-toggle:checked ~ .nav .nav-links {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }
}

/* HERO */
.hero {
  min-height: 100vh; padding: 140px 40px 80px; position: relative;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(255,176,32,0.12), transparent 50%),
              radial-gradient(ellipse at 85% 70%, rgba(108,227,255,0.08), transparent 50%),
              repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255,255,255,0.01) 3px, rgba(255,255,255,0.01) 4px);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); padding: 8px 14px; border: 1px solid var(--amber); margin-bottom: 32px;
}
.hero-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 1.6s infinite; box-shadow: 0 0 8px var(--red); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { font-family: 'Anton', sans-serif; font-size: clamp(56px, 9vw, 138px); line-height: 0.88; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 28px; }
.hero h1 .amber { color: var(--amber); }
.hero p.lede { font-size: 18px; color: var(--smoke); max-width: 520px; margin-bottom: 40px; line-height: 1.6; }
.hero-stats { display: flex; gap: 40px; margin-bottom: 40px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: 540px; }
.stat-num { font-family: 'Anton', sans-serif; font-size: 42px; color: var(--amber); line-height: 1; }
.stat-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--smoke); margin-top: 6px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--amber); color: var(--ink); padding: 18px 32px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 12px;
}
.btn-primary:hover { background: var(--amber-hot); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink-3); }
.btn-secondary { border: 1px solid var(--line); color: var(--bone); padding: 18px 32px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; transition: all 0.25s; display: inline-block; }
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); }

/* HERO VISUAL */
.hero-visual {
  position: relative; z-index: 2; aspect-ratio: 1; max-width: 540px; justify-self: auto;
  padding: 24px; background: linear-gradient(145deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line); border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 40px 80px -20px rgba(0,0,0,0.6);
}
.console-header {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--smoke);
  padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--line);
}
.console-header .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); display: inline-block; margin-right: 6px; box-shadow: 0 0 6px var(--red); animation: pulse 1.6s infinite; }
.vu-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; height: calc(100% - 60px); }
.vu-channel { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.vu-bar { flex: 1; width: 100%; background: var(--ink); border: 1px solid var(--line); display: flex; flex-direction: column-reverse; overflow: hidden; position: relative; }
.vu-fill {
  width: 100%;
  background: linear-gradient(to top, #4ade80 0%, #4ade80 50%, var(--amber) 70%, var(--amber-hot) 85%, var(--red) 100%);
  animation: vu 2.4s ease-in-out infinite;
}
.vu-channel:nth-child(1) .vu-fill { animation-delay: 0s; animation-duration: 1.8s; }
.vu-channel:nth-child(2) .vu-fill { animation-delay: 0.2s; animation-duration: 2.1s; }
.vu-channel:nth-child(3) .vu-fill { animation-delay: 0.4s; animation-duration: 1.6s; }
.vu-channel:nth-child(4) .vu-fill { animation-delay: 0.1s; animation-duration: 2.3s; }
.vu-channel:nth-child(5) .vu-fill { animation-delay: 0.5s; animation-duration: 1.9s; }
.vu-channel:nth-child(6) .vu-fill { animation-delay: 0.3s; animation-duration: 2.0s; }
.vu-channel:nth-child(7) .vu-fill { animation-delay: 0.6s; animation-duration: 1.7s; }
.vu-channel:nth-child(8) .vu-fill { animation-delay: 0.25s; animation-duration: 2.2s; }
@keyframes vu { 0%, 100% { height: 30%; } 25% { height: 75%; } 50% { height: 55%; } 75% { height: 90%; } }
.vu-label { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--smoke); }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; }
  .hero-visual { max-width: 100%; aspect-ratio: 16/10; justify-self: stretch; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-num { font-size: 32px; }
}

/* PAGE HEADER (for inner pages) */
.page-header { padding: 140px 40px 80px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(255,176,32,0.08), transparent 50%);
  z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-family: 'Anton', sans-serif; font-size: clamp(48px, 7vw, 100px); line-height: 0.9; text-transform: uppercase; margin-bottom: 28px; }
.page-header h1 .amber { color: var(--amber); }
.page-header p { font-size: 18px; color: var(--smoke); max-width: 680px; line-height: 1.6; }

/* SECTION SCAFFOLDING */
section { padding: 120px 40px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }
@media (max-width: 768px) { section { padding: 80px 20px; } .page-header { padding: 120px 20px 60px; } }
.section-label { display: flex; align-items: center; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.section-label::before { content: ""; width: 40px; height: 1px; background: var(--amber); }
.section-heading { font-family: 'Anton', sans-serif; font-size: clamp(42px, 6vw, 88px); line-height: 0.95; text-transform: uppercase; letter-spacing: -0.005em; margin-bottom: 24px; max-width: 900px; }

/* BOOKING */
.book-section { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.book-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.book-copy p { font-size: 16px; color: var(--smoke); margin-bottom: 24px; max-width: 440px; }
.book-list { list-style: none; margin-top: 32px; border-top: 1px solid var(--line); }
.book-list li { padding: 18px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 16px; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.book-list li::before { content: "→"; color: var(--amber); font-size: 18px; }
.calendly-wrap { background: var(--ink-3); border: 1px solid var(--line); padding: 6px; position: relative; min-height: 720px; }
.calendly-wrap::before { content: "LIVE BOOKING // CLK-01"; position: absolute; top: -11px; left: 20px; padding: 0 10px; background: var(--ink); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--amber); }
.calendly-inline-widget { width: 100%; height: 720px; min-width: 320px; }
@media (max-width: 980px) { .book-grid { grid-template-columns: 1fr; gap: 40px; } .calendly-wrap { min-height: 680px; } .calendly-inline-widget { height: 680px; } }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin-top: 60px; border: 1px solid var(--line); }
.service { background: var(--ink-2); padding: 48px 36px; position: relative; transition: background 0.3s; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; }
.service:hover { background: var(--ink-3); }
.service:hover .service-num { color: var(--amber); }
.service-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--smoke); letter-spacing: 0.14em; transition: color 0.3s; margin-bottom: 24px; }
.service h3 { font-family: 'Anton', sans-serif; font-size: 32px; text-transform: uppercase; line-height: 1; margin-bottom: 18px; }
.service p { font-size: 15px; color: var(--smoke); line-height: 1.6; }
.service-tag { margin-top: 28px; display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag span { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); padding: 4px 10px; border: 1px solid var(--line); }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* DETAILED SERVICES (services page) */
.service-row { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; padding: 40px 0; border-top: 1px solid var(--line); }
.service-row:last-of-type { border-bottom: 1px solid var(--line); }
.service-row .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--amber); letter-spacing: 0.14em; margin-bottom: 12px; }
.service-row h2 { font-family: 'Anton', sans-serif; font-size: 36px; text-transform: uppercase; line-height: 1; }
.service-row p { color: var(--smoke); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.service-row strong { color: var(--bone); }
@media (max-width: 720px) { .service-row { grid-template-columns: 1fr; gap: 20px; } .service-row h2 { font-size: 28px; } }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4px; }
.gallery-item { margin: 0; position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--ink-3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 22px; background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent); color: var(--bone); font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-placeholder { display: flex; align-items: center; justify-content: center; color: var(--smoke); font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; height: 100%; }

/* ABOUT */
.story { background: var(--ink-2); }
.story-wrap { max-width: 900px; margin: 0 auto; }
.story-wrap p { font-size: 16px; line-height: 1.7; color: var(--smoke); margin-bottom: 28px; }
.story-wrap p.lede { font-size: 22px; color: var(--bone); }
.story-wrap p strong { color: var(--bone); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value { background: var(--ink-2); padding: 40px 32px; }
.value .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--amber); letter-spacing: 0.14em; margin-bottom: 16px; }
.value h3 { font-family: 'Anton', sans-serif; font-size: 24px; text-transform: uppercase; line-height: 1; margin-bottom: 14px; }
.value p { color: var(--smoke); font-size: 15px; line-height: 1.6; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 40px; }
.contact-card { background: var(--ink); padding: 48px 36px; }
.contact-card .label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--amber); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.contact-card .big { font-family: 'Anton', sans-serif; font-size: 26px; text-transform: uppercase; line-height: 1.1; color: var(--bone); word-break: break-word; }
.contact-card .sub { color: var(--smoke); font-size: 14px; margin-top: 12px; }

/* CTA BANNER */
.cta-banner { background: var(--amber); color: var(--ink); padding: 80px 40px; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 22px); }
.cta-banner .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.cta-banner h2 { font-family: 'Anton', sans-serif; font-size: clamp(36px, 5vw, 64px); text-transform: uppercase; line-height: 0.95; }
.cta-banner .btn-dark { background: var(--ink); color: var(--bone); padding: 22px 40px; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; justify-self: end; transition: all 0.25s; }
.cta-banner .btn-dark:hover { background: var(--bone); color: var(--ink); }
@media (max-width: 780px) { .cta-banner .container { grid-template-columns: 1fr; } .cta-banner .btn-dark { justify-self: start; } }

/* FOOTER */
footer { background: var(--ink); padding: 80px 40px 40px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1280px; margin: 0 auto 60px; }
.footer-grid h5 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 12px; font-size: 14px; color: var(--smoke); }
.footer-grid ul li a:hover { color: var(--bone); }
.footer-about p { color: var(--smoke); font-size: 14px; margin-top: 20px; max-width: 360px; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 30px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: none; color: var(--smoke); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } .footer-bottom { flex-direction: column; gap: 10px; } }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(10, 10, 11, 0.96);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  animation: lb-fade 0.25s ease;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line);
  color: var(--bone);
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  z-index: 1;
}
.lightbox-close:hover { border-color: var(--amber); color: var(--amber); }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--smoke); padding: 10px 18px;
  background: rgba(10,10,11,0.7); border: 1px solid var(--line);
  max-width: 90%; text-align: center;
}
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }

.gallery-item { cursor: zoom-in; }
.gallery-item img { transition: transform 0.5s, opacity 0.2s; }
.gallery-item:hover img { transform: scale(1.05); opacity: 0.92; }
body.lb-open { overflow: hidden; }