:root {
  --ink: #141312;
  --paper: #fbfaf7;
  --soft: #f0f5f2;
  --blush: #f7dde0;
  --wine: #8d2346;
  --teal: #006d77;
  --gold: #d7a83d;
  --white: #ffffff;
  --muted: #66605b;
  --line: rgba(20, 19, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.28);
  --shadow: 0 24px 70px rgba(26, 19, 16, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body::selection {
  background: var(--wine);
  color: var(--white);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(20, 19, 18, 0.09);
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 42px;
  margin: -3px 0;
  object-fit: contain;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 0 -6px 0 rgba(215, 168, 61, 0.42);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a,
.back-link,
.lang-switch button {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-links a,
.back-link {
  padding: 8px 11px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.back-link:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.lang-switch button {
  min-width: 38px;
  padding: 6px 8px;
  background: transparent;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(500px, 64svh, 660px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background-color: #1b1a18;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.42) 45%, rgba(10, 10, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.08) 55%);
}

.hero--home {
  background-image: url("konser/konser_01.jpg");
  background-position: center 42%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 9vh, 96px) 0 30px;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 920px;
  margin: 0;
  letter-spacing: 0;
  line-height: 0.94;
  font-size: clamp(3.3rem, 10vw, 6.8rem);
}

.hero-logo-title {
  display: block;
  max-width: 520px;
  min-height: clamp(170px, 24vw, 250px);
}

.hero-logo {
  width: auto;
  height: clamp(170px, 24vw, 250px);
  max-width: min(100%, 520px);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.34));
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn-primary {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.btn-spotify {
  border-color: #1db954;
  background: #1db954;
  color: #07170d;
}

.btn-youtube {
  border-color: #d82323;
  background: #d82323;
  color: var(--white);
}

.btn-tiktok {
  border-color: #121212;
  background: #121212;
  color: var(--white);
}

.btn-instagram {
  border-color: #bb2a68;
  background: linear-gradient(135deg, #f5a33a, #dc2743 45%, #7d3ac1);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 0;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  min-height: 80px;
  padding: 16px;
  background: rgba(10, 10, 10, 0.34);
}

.hero-metrics strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.metric-band {
  padding: 0 0 28px;
  background: var(--ink);
  color: var(--white);
}

.metric-band .hero-metrics {
  position: relative;
  z-index: 2;
  margin-top: -18px;
}

.section {
  padding: clamp(56px, 8vw, 94px) 0;
}

.section-soft {
  background: var(--soft);
}

.section-blush {
  background: var(--blush);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--gold);
}

.section h2,
.content h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-lead {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-lead,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: stretch;
}

.cover-art {
  min-height: 420px;
  border-radius: var(--radius);
  background: url("kapak.jpg") center / cover;
  box-shadow: var(--shadow);
}

.release-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.release-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.release-copy p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.spotify-frame,
.photo-card,
.story-card,
.social-card,
.contact-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(26, 19, 16, 0.08);
  overflow: hidden;
}

.spotify-frame {
  padding: 10px;
}

.spotify-frame iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 6px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.portrait-frame {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.story-card {
  padding: clamp(24px, 4vw, 42px);
}

.story-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.story-card p:last-child {
  margin-bottom: 0;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.fact {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.fact strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.photo-grid,
.gallery-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.photo-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  color: var(--white);
  text-decoration: none;
}

.photo-card.wide {
  grid-column: span 2;
  aspect-ratio: 8 / 5;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  font-weight: 850;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.54), transparent 46%);
}

.cta-band {
  padding: clamp(42px, 7vw, 70px) 0;
  background: linear-gradient(135deg, var(--teal), var(--wine));
  color: var(--white);
}

.cta-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-layout h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-color: #1b1a18;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.28)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.08));
}

.page-hero--blog {
  background-image: url("kapak.jpg");
  background-position: center 36%;
}

.page-hero--gallery,
.page-hero--events {
  background-image: url("konser/konser_08.jpg");
  background-position: center 38%;
}

.page-hero--social {
  background-image: url("avatar.jpg");
  background-position: center 22%;
}

.page-hero--contact {
  background-image: url("konser/konser_03.jpg");
  background-position: center 45%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 44px;
}

.content {
  width: min(930px, calc(100% - 32px));
  margin: 0 auto;
}

.content-wide {
  width: min(1180px, calc(100% - 32px));
}

.article-card {
  padding: clamp(22px, 4vw, 38px);
  margin: 16px 0;
}

.article-card h2 {
  margin-bottom: 16px;
}

.article-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.article-card p:last-child {
  margin-bottom: 0;
}

.meta {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid .photo-card {
  aspect-ratio: 1 / 1;
}

.gallery-grid .photo-card:nth-child(3n + 1) {
  aspect-ratio: 4 / 5;
}

.gallery-grid .photo-card:nth-child(5n + 2) {
  aspect-ratio: 5 / 4;
}

.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.84);
}

.lb.open {
  display: flex;
}

.lb img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lb button {
  position: fixed;
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(20, 19, 18, 0.72);
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.lb .close {
  top: 18px;
  right: 18px;
  padding: 0 16px;
  font-size: 0.92rem;
  font-weight: 850;
}

.lb .prev,
.lb .next {
  top: 50%;
  transform: translateY(-50%);
}

.lb .prev {
  left: 18px;
}

.lb .next {
  right: 18px;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.event-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(26, 19, 16, 0.08);
}

.event-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.1;
}

.event-card p {
  margin: 0;
  color: var(--muted);
}

.social-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.social-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
}

.social-card svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.social-card h2 {
  margin: 0;
  font-size: 1.65rem;
}

.social-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.social-card.instagram {
  background: linear-gradient(135deg, #f5a33a, #dc2743 45%, #7d3ac1);
  color: var(--white);
}

.social-card.youtube {
  background: #d82323;
  color: var(--white);
}

.social-card.tiktok {
  background: #121212;
  color: var(--white);
}

.social-card.spotify {
  background: #1db954;
  color: #07170d;
}

.social-card.instagram p,
.social-card.youtube p,
.social-card.tiktok p {
  color: rgba(255, 255, 255, 0.76);
}

.social-card.spotify p {
  color: rgba(7, 23, 13, 0.72);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
}

.contact-card h2 {
  margin-bottom: 16px;
}

.contact-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.email-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.email-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

.email-link span {
  overflow-wrap: anywhere;
}

.contact-photo {
  min-height: 420px;
  border-radius: var(--radius);
  background: url("konser/konser_06.jpg") center / cover;
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .navbar {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: clamp(500px, 62svh, 620px);
  }

  .release-layout,
  .story-grid,
  .contact-layout,
  .event-list {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .track-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card.wide {
    grid-column: span 2;
  }

  .section-head,
  .cta-layout,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .navbar,
  .hero-inner,
  .section-inner,
  .page-hero-inner,
  .content,
  .content-wide,
  .cta-layout,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .nav-links a {
    padding: 7px 9px;
    font-size: 0.84rem;
  }

  .lang-switch {
    margin-left: 0;
  }

  .hero {
    min-height: 520px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 18vw, 5.4rem);
  }

  .brand-logo {
    height: 38px;
  }

  .hero-logo-title {
    min-height: 148px;
  }

  .hero-logo {
    height: 148px;
  }

  .hero-metrics {
    width: 100%;
  }

  .hero-metrics div {
    min-height: 72px;
    padding: 10px;
  }

  .hero-metrics strong {
    font-size: clamp(1.1rem, 7vw, 1.65rem);
  }

  .hero-metrics span {
    font-size: 0.76rem;
  }

  .fact-list,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card.wide {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .cover-art,
  .portrait-frame,
  .portrait-frame img,
  .contact-photo {
    min-height: 360px;
  }

  .lb .prev,
  .lb .next {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}
