:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #171717;
  --muted: #666666;
  --dark: #111111;
  --accent: #c62828;
  --border: #dddddd;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}
body.menu-open,
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 88px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, .97);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { font-size: 22px; font-weight: 800; letter-spacing: .12em; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { font-size: 14px; font-weight: 600; color: #ddd; }
.site-nav a:hover, .site-nav a.active { color: #fff; }
.site-nav .nav-youtube { padding: 10px 15px; background: var(--accent); color: #fff; border-radius: 4px; }
.menu-button { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: #fff; }

.hero { padding: 72px 0; background: #e9e9e9; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.35fr; gap: 56px; align-items: center; }
.hero-copy { padding: 20px 0; }
.label { margin: 0 0 12px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2 { margin: 0; line-height: 1.12; }
h1 { font-size: clamp(58px, 8vw, 105px); letter-spacing: -.06em; }
h2 { font-size: clamp(34px, 5vw, 56px); letter-spacing: -.04em; }
.hero-text { max-width: 520px; margin: 24px 0 0; color: #4d4d4d; font-size: 18px; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 4px; font-weight: 700; transition: .2s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--accent); color: #fff; }
.button-secondary { border-color: #222; background: transparent; }
.button-light { background: #fff; color: #111; }
.button-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.hero-image { background: #111; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.hero-image img { aspect-ratio: 16 / 9; object-fit: cover; }

.section-heading { max-width: 690px; margin-bottom: 38px; }
.section-heading > p:last-child { margin: 16px 0 0; color: var(--muted); }
.music-section { background: var(--surface); }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.video-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-info { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; }
.video-info strong { font-size: 14px; }
.video-info a { color: var(--accent); font-size: 12px; font-weight: 700; }
.center-action { margin-top: 34px; text-align: center; }

.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center; }
.about-image img { max-height: 670px; object-fit: cover; object-position: center top; border-radius: 6px; }
.about-copy > p { color: var(--muted); }
.about-copy .about-intro { margin-top: 22px; color: var(--text); font-size: 20px; font-weight: 600; }
.artist-details { margin-top: 28px; border-top: 1px solid var(--border); }
.artist-details div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.artist-details span { color: var(--muted); font-size: 13px; }
.artist-details strong { font-size: 14px; }

.gallery-section { background: var(--surface); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-item { position: relative; padding: 0; border: 0; border-radius: 5px; overflow: hidden; background: #111; cursor: pointer; text-align: left; }
.gallery-item img { aspect-ratio: 4 / 5; object-fit: cover; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item span { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 12px; color: #fff; font-weight: 700; background: linear-gradient(transparent, rgba(0,0,0,.78)); }

.contact-section { padding: 82px 0; background: var(--dark); color: #fff; text-align: center; }
.contact-inner { max-width: 760px; }
.contact-inner .label { color: #ef6c6c; }
.contact-inner > p:not(.label) { margin: 18px auto 0; color: #c8c8c8; }
.contact-actions { justify-content: center; }

.site-footer { padding: 28px 0; background: #080808; color: #aaa; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 13px; }
.footer-inner strong { color: #fff; letter-spacing: .08em; }
.footer-inner a { color: #fff; }

.image-modal { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 30px; background: rgba(0,0,0,.9); }
.image-modal.open { display: grid; }
.image-modal img { width: auto; max-width: min(920px, 92vw); max-height: 88vh; object-fit: contain; }
.modal-close { position: fixed; top: 20px; right: 24px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(0,0,0,.35); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .menu-button { display: block; }
  .site-nav { position: fixed; top: 70px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 22px; background: #111; border-top: 1px solid rgba(255,255,255,.12); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; }
  .site-nav .nav-youtube { margin-top: 8px; padding: 12px 14px; text-align: center; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 2; }
  .hero-image { order: 1; }
  .hero { padding: 38px 0 60px; }
  .hero-grid { gap: 36px; }
  .video-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 40px; }
  .about-image { max-width: 560px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 58px 0; }
  .header-inner { min-height: 64px; }
  .site-nav { top: 64px; }
  .hero { padding-top: 24px; }
  .hero-grid { gap: 28px; }
  h1 { font-size: 58px; }
  h2 { font-size: 36px; }
  .hero-text { font-size: 16px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .video-info { align-items: flex-start; flex-direction: column; gap: 4px; }
  .gallery-grid { gap: 10px; }
  .gallery-item span { font-size: 13px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .image-modal { padding: 14px; }
}
