:root {
  --bg:          #0A0A0A;
  --bg-card:     #111111;
  --bg-surface:  #181818;
  --bg-dark:     #060606;
  --text:        #FFFFFF;
  --text-muted:  #888888;
  --text-subtle: #444444;
  --accent:      #C8560A;
  --accent-h:    #E06010;
  --accent-dim:  rgba(200, 86, 10, 0.12);
  --accent-dim2: rgba(200, 86, 10, 0.06);
  --border:      #1C1C1C;
  --border-lg:   #242424;
  --radius:      10px;
  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;
  --nav-h:       64px;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
* { scrollbar-width: thin; scrollbar-color: #2a2a2a var(--bg); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 11px 24px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border-lg);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  padding: 9px 20px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent) !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--accent); color: #fff !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-link {
  padding: 15px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.15s;
}
.mobile-menu.open .mobile-link:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.10s; }
.mobile-menu.open .mobile-link:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.20s; }
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--text); }

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 24px 60px;
  max-width: 1120px;
  margin: 0 auto;
  gap: 60px;
}

.hero-content { flex: 1; max-width: 580px; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.hero-title-accent { color: var(--accent); }

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-visual {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 180px;
}
.bar {
  width: 10px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
  animation: eq 1.4s ease-in-out infinite alternate;
}
.bar:nth-child(1)  { height: 40%; animation-delay: 0.0s; }
.bar:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.bar:nth-child(3)  { height: 55%; animation-delay: 0.2s; }
.bar:nth-child(4)  { height: 85%; animation-delay: 0.05s; }
.bar:nth-child(5)  { height: 45%; animation-delay: 0.3s; }
.bar:nth-child(6)  { height: 95%; animation-delay: 0.15s; }
.bar:nth-child(7)  { height: 60%; animation-delay: 0.25s; }
.bar:nth-child(8)  { height: 80%; animation-delay: 0.35s; }
.bar:nth-child(9)  { height: 50%; animation-delay: 0.08s; }
.bar:nth-child(10) { height: 90%; animation-delay: 0.18s; }
.bar:nth-child(11) { height: 65%; animation-delay: 0.28s; }
.bar:nth-child(12) { height: 75%; animation-delay: 0.12s; }
.bar:nth-child(13) { height: 35%; animation-delay: 0.22s; }
.bar:nth-child(14) { height: 55%; animation-delay: 0.32s; }
.bar:nth-child(15) { height: 70%; animation-delay: 0.06s; }
.bar:nth-child(16) { height: 48%; animation-delay: 0.16s; }
.bar:nth-child(17) { height: 82%; animation-delay: 0.26s; }
.bar:nth-child(18) { height: 58%; animation-delay: 0.36s; }

@keyframes eq {
  0%   { transform: scaleY(0.3); opacity: 0.4; }
  100% { transform: scaleY(1);   opacity: 0.9; }
}

.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.contact-section .section-heading {
  margin-bottom: 0;
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: #4ade80;
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}
.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 15px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-services {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.15s;
}
.service-item:last-child { border-bottom: none; }
.service-item:hover { background: var(--bg-surface); }
.service-arrow {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.service-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.genre-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 6px 14px;
  background: var(--accent-dim2);
  border: 1px solid var(--border-lg);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.tag:hover { border-color: var(--accent); color: var(--accent); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 24px;
  align-items: start;
}
.projects-grid.single { grid-template-columns: 1fr; }
.projects-grid.single .project-card { display: grid; grid-template-columns: 1fr 1fr; }
.projects-grid.single .project-header { border-bottom: none; border-right: 1px solid var(--border); }
.projects-grid.single .project-tracks { display: flex; flex-direction: column; justify-content: center; }

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.project-card:hover { border-color: var(--border-lg); }

.project-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.project-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.project-year {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
}
.project-client {
  font-size: 11px;
  color: var(--text-subtle);
}
.project-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}
.project-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.project-tag {
  padding: 3px 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 86, 10, 0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.project-tracks { padding: 8px 0; }

.audio-track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px;
  transition: background 0.15s;
  cursor: default;
}
.audio-track:hover { background: var(--bg-surface); }

.track-play {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border-lg);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
}
.track-play:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.track-play.playing {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.track-play svg { pointer-events: none; margin-left: 2px; }
.track-play.playing svg { margin-left: 0; }

.track-body { flex: 1; min-width: 0; }
.track-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.track-bar {
  flex: 1;
  height: 3px;
  background: var(--border-lg);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.track-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}
.track-time {
  font-size: 11px;
  color: var(--text-subtle);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  min-width: 70px;
  text-align: right;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.reviews-grid.featured { grid-template-columns: 1fr; }
.reviews-grid.featured .review-card {
  padding: 40px 48px;
  border-color: var(--border-lg);
}
.reviews-grid.featured .review-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
}
.reviews-grid.featured .review-stars { margin-bottom: 20px; }
.reviews-grid.featured .review-stars .star { font-size: 16px; }
.reviews-grid.featured .review-card::before {
  font-size: 120px;
  top: 20px;
  right: 40px;
  color: rgba(200,86,10,0.07);
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 72px;
  font-family: var(--font-head);
  color: var(--accent-dim);
  line-height: 1;
  pointer-events: none;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.star { color: var(--accent); font-size: 14px; }
.star.empty { color: var(--border-lg); }
.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-role { font-size: 12px; color: var(--text-subtle); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; 
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.pricing-card.highlighted {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(200,86,10,0.06) 0%, var(--bg-card) 100%);
}
.pricing-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pricing-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}
.pricing-features li::before { content: '—'; color: var(--accent); flex-shrink: 0; }

.contact-section { background: var(--bg-dark); }
.contact-inner { max-width: 640px; }
.contact-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.6;
}
.contact-links { display: flex; flex-direction: column; gap: 4px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
a.contact-item:hover { border-color: var(--accent); }
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-label { font-size: 11px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-value { font-size: 15px; font-weight: 500; margin-top: 2px; }
.contact-id { font-size: 11px; color: var(--text-subtle); font-weight: 400; margin-left: 6px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-links {
  padding-top: 23px;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cf-input {
  background: var(--bg-card);
  border: 1px solid var(--border-lg);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.cf-input:focus { border-color: var(--accent); }
.cf-input::placeholder { color: var(--text-subtle); }
.cf-status {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.cf-ok { background: rgba(34,197,94,0.08); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.cf-err { background: rgba(239,68,68,0.08); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.cf-submit { align-self: flex-start; }

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
}
.footer-copy { font-size: 12px; color: var(--text-subtle); }

.loading-state {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  color: var(--text-subtle);
  font-size: 14px;
}
.empty-state {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  color: var(--text-subtle);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; min-height: auto; padding-top: calc(var(--nav-h) + 80px); }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-visual { order: -1; }
  .eq-bars { height: 100px; }
  .bar { width: 7px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-grid.single .project-card { display: block; }
  .projects-grid.single .project-header { border-right: none; border-bottom: 1px solid var(--border); }
  .projects-grid.single .project-tracks { display: block; }
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cf-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .track-bar { height: 6px; }
  .track-bar-fill { height: 6px; }
  .track-play { width: 40px; height: 40px; }
  .audio-track { padding: 12px 16px; gap: 12px; }
  .track-time { font-size: 10px; min-width: 60px; }
}

@media (max-width: 500px) {
  .cf-row { grid-template-columns: 1fr; }
  .cf-submit { width: 100%; text-align: center; }
}
