:root {
  --bg: #0a0d0f;
  --bg-soft: #11161a;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --card: #111317;
  --line: rgba(255,255,255,0.12);
  --text: #ecf0f3;
  --muted: #aeb8bf;
  --dark: #091013;
  --brand: #b8e21d;
  --brand-soft: rgba(184, 226, 29, 0.12);
  --brand-2: #d7ff47;
  --shadow: 0 20px 80px rgba(0,0,0,.35);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(184,226,29,.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(184,226,29,.08), transparent 22%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 28px 40px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(10,13,15,.9), rgba(10,13,15,.55));
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.brand img {
  width: 166px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.28));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color .25s ease;
}

.nav a:hover,
.nav a.active { color: var(--text); }
.nav .nav-cta {
  color: var(--dark);
  background: var(--brand);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
}

.section {
  padding: 54px 0;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.intro-panel h2,
.studio-copy h2,
.cta-panel h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.55rem);
  max-width: 880px;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 34px 0 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: var(--dark); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  margin: 16px 0 0;
}

.hero-metrics li {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: .9rem;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.hero-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  position: absolute;
  inset: 40px 0 0 84px;
}

.hero-card-floating {
  position: absolute;
  width: 260px;
  height: 320px;
  left: 0;
  bottom: 20px;
}

.hero-line {
  position: absolute;
  top: 0;
  left: 34px;
  width: 280px;
  height: 280px;
  border-top: 1px solid rgba(184,226,29,.45);
  border-left: 1px solid rgba(184,226,29,.45);
}

.intro-grid,
.studio-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.intro-panel,
.service-card,
.project-large,
.project-card,
.band-card,
.process-card,
.quote-box,
.contact-card,
.contact-form,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.dark-panel {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  padding: 42px;
}

.light-panel {
  padding: 42px;
  background: rgba(184,226,29,.08);
}

.panel-tag {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 700;
}

.light-panel p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.03rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 980px;
}

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.process-card {
  padding: 28px;
  min-height: 240px;
}

.service-number,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-2);
  font-weight: 800;
  margin-bottom: 20px;
}

.service-card h3,
.process-card h3,
.project-copy h3,
.band-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.service-card p,
.process-card p,
.project-copy p,
.studio-copy p,
.contact-card span,
.contact-form input,
.contact-form textarea {
  color: var(--muted);
  line-height: 1.75;
}

.accent-card {
  background: linear-gradient(145deg, rgba(184,226,29,.16), rgba(255,255,255,.03));
}

.projects-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.project-large,
.project-card,
.band-card {
  overflow: hidden;
}

.project-large img,
.project-card img,
.band-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-large {
  min-height: 760px;
  position: relative;
}

.project-large img { height: 100%; }
.project-stack { display: grid; gap: 18px; }
.project-card { min-height: 370px; position: relative; }

.project-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,.2));
  backdrop-filter: blur(10px);
}

.project-type,
.contact-label {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 700;
}

.projects-band {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.band-card {
  min-height: 240px;
  position: relative;
}

.band-card > div,
.band-card.text-only {
  position: absolute;
  inset: auto 20px 20px 20px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(to top, rgba(0,0,0,.84), rgba(0,0,0,.15));
}

.band-card.text-only {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(184,226,29,.08));
}


.gallery-section { position: relative; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.08) 55%);
}
.gallery-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}
.gallery-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}
.gallery-tall { grid-row: span 2; min-height: 578px; }
.gallery-wide { grid-column: span 2; }

.process-grid { grid-template-columns: repeat(5, 1fr); }
.process-card { min-height: 220px; }

.cta-panel {
  padding: 42px;
  background: linear-gradient(135deg, rgba(184,226,29,.22), rgba(255,255,255,.05));
}

.cta-panel h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); max-width: 900px; margin-bottom: 24px; }

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.contact-card,
.contact-form { padding: 28px; }
.contact-card a {
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 16px 18px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 12px;
  font-size: .95rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.js .reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }

@media (max-width: 1180px) {
  .hero,
  .projects-layout,
  .intro-grid,
  .studio-grid,
  .contact-grid,
  .projects-band,
  .service-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero { min-height: auto; padding-top: 28px; }
  .hero-visual { min-height: 560px; }
  .project-large { min-height: 520px; }
}

@media (max-width: 900px) {
  .site-shell { padding-inline: 18px; }
  .menu-toggle { display: inline-block; }
  .nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(10,13,15,.97);
    border: 1px solid var(--line);
    border-radius: 24px;
    display: none;
  }
  .nav.open { display: flex; }

  .hero,
  .intro-grid,
  .projects-layout,
  .projects-band,
  .service-grid,
  .process-grid,
  .studio-grid,
  .contact-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-card-main {
    inset: 20px 0 0 40px;
  }

  .hero-card-floating {
    width: 200px;
    height: 240px;
  }

  .hero-metrics { grid-template-columns: 1fr; }
  .project-card,
  .project-large,
  .band-card,
  .gallery-card,
  .gallery-tall,
  .gallery-wide { min-height: 300px; }
  .footer { flex-direction: column; }
}

@media (max-width: 640px) {
  .brand img { width: 138px; }
  .section { padding: 34px 0; }
  .dark-panel, .light-panel, .service-card, .process-card, .contact-card, .contact-form, .cta-panel { padding: 22px; }
  .hero-visual { min-height: 430px; }
  .hero-card-main { inset: 30px 0 0 18px; }
  .hero-card-floating { left: 6px; bottom: 0; }
  .hero-line { width: 160px; height: 160px; left: 14px; }
}


.page-hero {
  min-height: auto;
  grid-template-columns: 1fr .9fr;
  padding-top: 24px;
}
.page-hero .hero-visual { min-height: 460px; }
.page-hero .hero-card-main { inset: 20px 0 0 50px; }
.page-hero .hero-card-floating { width: 220px; height: 260px; left: 0; bottom: 0; }

.breadcrumbs {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--text); }

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
.content-card,
.side-card,
.link-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.content-card,
.side-card { padding: 28px; }
.content-card p,
.side-card p,
.link-card p,
.service-card p,
.project-copy p,
.contact-form p,
.contact-card span {
  color: var(--muted);
  line-height: 1.75;
}
.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.bullet-list li + li { margin-top: 8px; }

.link-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.link-card {
  padding: 24px;
  transition: transform .25s ease, border-color .25s ease;
}
.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,226,29,.45);
}
.link-card h3 { margin-top: 12px; margin-bottom: 10px; }
.mini-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.project-grid .project-card img { height: 260px; object-fit: cover; width: 100%; }
.project-grid .project-card { overflow: hidden; }
.project-grid .project-copy { padding: 18px 18px 22px; }

.contact-cta {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: start;
}
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.info-list {
  display: grid;
  gap: 16px;
}
.info-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}
.info-item strong { display: block; margin-bottom: 6px; }

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

@media (max-width: 980px) {
  .content-grid,
  .project-grid,
  .contact-cta,
  .page-hero {
    grid-template-columns: 1fr;
  }
  .link-grid { grid-template-columns: 1fr; }
}


.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #08110a;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 46px rgba(0,0,0,.4);
  filter: brightness(1.02);
}

.whatsapp-float__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.whatsapp-float__icon svg {
  width: 22px;
  height: 22px;
}

.whatsapp-float__text {
  font-size: 15px;
  letter-spacing: .01em;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 14px 0 12px;
  }

  .whatsapp-float__text {
    display: none;
  }
}
