* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(255,112,67,.13),
      transparent 25%
    ),
    radial-gradient(
      circle at 88% 42%,
      rgba(255,112,67,.07),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(255,255,255,.035),
      transparent 32%
    ),
    #101010;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "IKSAN.";
  position: fixed;
  z-index: -2;
  left: -5vw;
  top: 32vh;
  font-size: 25vw;
  line-height: .75;
  font-weight: 900;
  letter-spacing: -1.5vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
  pointer-events: none;
  white-space: nowrap;
  transform: rotate(-7deg);
}

body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  right: -18vw;
  top: 38vh;
  border: 1px solid rgba(255,112,67,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255,112,67,.018),
    0 0 0 140px rgba(255,112,67,.012),
    0 0 100px rgba(255,112,67,.08);
  pointer-events: none;
  animation: archiveOrbit 18s ease-in-out infinite alternate;
}

@keyframes archiveOrbit {
  0% {
    transform: translate3d(0, -20px, 0) rotate(-8deg);
  }

  100% {
    transform: translate3d(-45px, 35px, 0) rotate(8deg);
  }
}

/* Editorial background lines */
main::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background:
    linear-gradient(
      90deg,
      transparent 0,
      transparent calc(6% - 1px),
      rgba(255,255,255,.035) 6%,
      transparent calc(6% + 1px)
    ),
    linear-gradient(
      90deg,
      transparent 0,
      transparent calc(94% - 1px),
      rgba(255,255,255,.035) 94%,
      transparent calc(94% + 1px)
    );
}

/* Small ambient light */
main::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 180px;
  height: 180px;
  left: 8%;
  top: 65%;
  border-radius: 50%;
  background: rgba(255,112,67,.055);
  filter: blur(70px);
  pointer-events: none;
  animation: archiveFloat 12s ease-in-out infinite alternate;
}

@keyframes archiveFloat {
  0% {
    transform: translate(0, 0) scale(.9);
  }

  100% {
    transform: translate(80px, -60px) scale(1.15);
  }
}

@media (max-width: 600px) {
  body::before {
    font-size: 34vw;
    top: 38vh;
    left: -9vw;
  }

  body::after {
    width: 75vw;
    height: 75vw;
    right: -42vw;
  }

  main::before {
    opacity: .22;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  main::after {
    animation: none;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16, 16, 16, 0.88);
  border-bottom: 1px solid #292929;
  backdrop-filter: blur(14px);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  color: #ff7043;
}

nav {
  display: flex;
  gap: 25px;
}

nav a,
.admin-btn {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: #fff;
}

.admin-btn {
  padding: 9px 16px;
  border: 1px solid #444;
  border-radius: 999px;
}

.hero {
  min-height: 88vh;
  padding: 15vh 8% 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 30%, #292929 0, transparent 35%),
    #101010;
}

.eyebrow,
.label {
  color: #ff7043;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero h1 {
  max-width: 850px;
  margin: 20px 0;
  font-size: clamp(48px, 9vw, 110px);
  line-height: .95;
  letter-spacing: -5px;
}

.hero h1 span {
  color: #888;
}

.intro {
  max-width: 520px;
  color: #aaa;
  font-size: 17px;
}

.explore {
  width: fit-content;
  margin-top: 35px;
  padding: 13px 20px;
  border: 1px solid #555;
  border-radius: 999px;
  color: white;
  text-decoration: none;
}

.section {
  padding: 120px 8%;
  border-top: 1px solid #292929;
}

.section h2 {
  margin-top: 15px;
  font-size: clamp(36px, 6vw, 70px);
  letter-spacing: -3px;
}

.desc {
  max-width: 600px;
  margin-top: 15px;
  color: #999;
}

.card,
.empty-card {
  margin-top: 45px;
  padding: 35px;
  border: 1px solid #303030;
  border-radius: 20px;
  background: #171717;
}

.card h3 {
  font-size: 28px;
}

.card p {
  color: #888;
}

.empty-card {
  color: #666;
  text-align: center;
}

footer {
  padding: 60px 8%;
  border-top: 1px solid #292929;
}

footer p {
  margin-top: 8px;
  color: #777;
}

@media (max-width: 700px) {
  header {
    padding: 0 5%;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 80vh;
    padding: 100px 6% 70px;
  }

  .hero h1 {
    font-size: 54px;
    letter-spacing: -3px;
  }

  .section {
    padding: 85px 6%;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #151515;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== HERO REDESIGN ===== */

.hero {
  min-height: 82vh;
  padding: 100px 7vw 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 75% 25%, rgba(255,112,67,.18), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.06), transparent 25%),
    #0b0b0b;
}

/* efek garis/lingkaran dekorasi */
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: 80px;
  border: 1px solid rgba(255,112,67,.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(255,112,67,.025),
    0 0 0 120px rgba(255,112,67,.018);
  pointer-events: none;
}

.hero::after {
  content: "IKSAN.";
  position: absolute;
  right: 6vw;
  bottom: 20px;
  font-size: clamp(80px, 15vw, 220px);
  font-weight: 900;
  letter-spacing: -10px;
  color: rgba(255,255,255,.025);
  pointer-events: none;
}

.hero .eyebrow {
  position: relative;
  z-index: 1;
  color: #ff7043;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0 0 25px;
  font-size: clamp(52px, 9vw, 120px);
  line-height: .95;
  letter-spacing: -6px;
  font-weight: 900;
}

.hero h1 span {
  color: #ff7043;
}

.hero .intro {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 0 35px;
  color: #999;
  font-size: 18px;
  line-height: 1.7;
}

.hero .explore {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border: 1px solid #333;
  border-radius: 999px;
  color: #fff;
  background: #151515;
  text-decoration: none;
  transition: .25s ease;
}

.hero .explore:hover {
  background: #ff7043;
  border-color: #ff7043;
  color: #000;
  transform: translateY(-3px);
}

/* mobile */
@media (max-width: 600px) {
  .hero {
    min-height: 78vh;
    padding: 80px 24px 60px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 76px);
    letter-spacing: -4px;
  }

  .hero .intro {
    font-size: 16px;
  }

  .hero::before {
    width: 280px;
    height: 280px;
    right: -150px;
    top: 100px;
  }

  .hero::after {
    font-size: 80px;
    right: -10px;
    bottom: 20px;
  }
}

/* ===== JOURNEY FEATURE ===== */

.journey-section {
  position: relative;
}

.journey-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.journey-header h2 {
  margin-bottom: 12px;
}

.journey-feature {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  background: #151515;
  border: 1px solid #292929;
}

.journey-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.journey-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.9) 0%,
      rgba(0,0,0,.55) 45%,
      rgba(0,0,0,.05) 100%
    );
}

.journey-feature:hover img {
  transform: scale(1.04);
}

.journey-overlay {
  position: absolute;
  z-index: 2;
  left: 40px;
  right: 40px;
  bottom: 40px;
  max-width: 650px;
}

.journey-number {
  color: #ff7043;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.journey-overlay h3 {
  font-size: clamp(42px, 7vw, 80px);
  line-height: .95;
  letter-spacing: -4px;
  margin: 0 0 14px;
}

.journey-meta {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 18px;
}

.journey-text {
  max-width: 520px;
  color: #aaa;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 600px) {
  .journey-feature {
    min-height: 520px;
    border-radius: 22px;
  }

  .journey-overlay {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .journey-overlay h3 {
    font-size: 48px;
    letter-spacing: -3px;
  }

  .journey-text {
    font-size: 14px;
  }
}

/* ===== GALLERY ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid #292929;
  border-radius: 22px;
  background: #151515;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65),
    transparent 45%
  );
  pointer-events: none;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-loading,
.gallery-empty {
  color: #777;
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .gallery-item span {
    left: 12px;
    bottom: 12px;
    font-size: 9px;
  }
}

/* ===== STORIES ===== */

.stories-section {
  position: relative;
}

.stories-section > h2 {
  font-size: clamp(42px, 7vw, 80px);
  line-height: .95;
  letter-spacing: -4px;
  margin: 0 0 18px;
}

.stories-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.story-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  border: 1px solid #292929;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255,112,67,.13),
      transparent 35%
    ),
    #121212;

  overflow: hidden;
  transition: .3s ease;
}

.story-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border: 1px solid rgba(255,112,67,.25);
  border-radius: 50%;
}

.story-card:hover {
  transform: translateY(-6px);
  border-color: #444;
}

.story-top {
  position: absolute;
  top: 28px;
  left: 30px;
  right: 30px;

  display: flex;
  justify-content: space-between;

  color: #ff7043;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.story-card h3 {
  position: relative;
  margin: 0 0 14px;
  max-width: 500px;

  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -2px;
}

.story-card p {
  position: relative;
  max-width: 500px;
  margin: 0 0 25px;

  color: #999;
  font-size: 15px;
  line-height: 1.7;
}

.story-link {
  position: relative;
  width: fit-content;

  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #555;
  padding-bottom: 4px;
}

.story-link:hover {
  color: #ff7043;
  border-color: #ff7043;
}

@media (max-width: 600px) {
  .stories-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .story-card {
    min-height: 330px;
    padding: 24px;
    border-radius: 20px;
  }

  .story-top {
    top: 24px;
    left: 24px;
    right: 24px;
  }
}

/* ===== MUSIC ===== */

.music-section {
  position: relative;
}

.music-section > h2 {
  font-size: clamp(42px, 7vw, 80px);
  line-height: .95;
  letter-spacing: -4px;
  margin: 0 0 18px;
}

.music-list {
  margin-top: 45px;
  border-top: 1px solid #292929;
}

.music-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 20px;

    min-height: 260px;
    padding: 30px 25px;

    border: 1px solid #292929;
    border-radius: 28px;

    overflow: hidden;
    background: #121212;

    transition: .25s ease;
}

.music-item:hover {
  padding-left: 22px;
  padding-right: 22px;
  background: #121212;
}

.music-number {
  color: #ff7043;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.music-info h3 {
  margin: 0 0 5px;
  font-size: 25px;
  letter-spacing: -1px;
}

.music-info p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.music-note {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #333;
  border-radius: 50%;

  color: #ff7043;
  font-size: 20px;
}

@media (max-width: 600px) {
  .music-item {
    grid-template-columns: 45px 1fr 42px;
    gap: 12px;
    padding: 22px 4px;
  }

  .music-info h3 {
    font-size: 21px;
  }

  .music-item:hover {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ===== ABOUT ===== */

.about-section {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 45px;
}

.about-title h2 {
  margin: 0;
  font-size: clamp(55px, 8vw, 110px);
  line-height: .9;
  letter-spacing: -6px;
}

.about-title h2 span {
  color: #ff7043;
}

.about-content {
  max-width: 600px;
}

.about-content p {
  color: #888;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 22px;
}

.about-content .about-lead {
  color: #eee;
  font-size: 22px;
  line-height: 1.5;
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #292929;
}

.about-meta div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-meta span {
  color: #ff7043;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.about-meta strong {
  color: #ddd;
  font-size: 11px;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-title h2 {
    font-size: 62px;
    letter-spacing: -4px;
  }

  .about-content .about-lead {
    font-size: 19px;
  }

  .about-meta {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ===== MOBILE NAV ===== */

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #333;
  border-radius: 50%;
  background: #151515;
  color: white;
  font-size: 19px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

@media (max-width: 700px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #0b0b0b;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: .25s ease;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;

    color: #777;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
  }

  .mobile-menu-head button {
    width: 42px;
    height: 42px;
    border: 1px solid #333;
    border-radius: 50%;
    background: #151515;
    color: white;
    font-size: 27px;
  }

  .mobile-menu a {
    padding: 20px 0;
    border-bottom: 1px solid #292929;
    color: white;
    text-decoration: none;
    font-size: 28px;
    letter-spacing: -1px;
  }

  .mobile-menu a:hover {
    color: #ff7043;
  }
}

.story-content {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #333;
  border-radius: 14px;
  background: #151515;
  color: #ccc;
  line-height: 1.7;
}

.story-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  margin-top: 0;
  padding: 0 18px;
  border: 1px solid #333;
  border-radius: 14px;
  background: #151515;
  color: #aaa;
  line-height: 1.7;
  transition: all 0.4s ease;
}

.story-content.show {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 20px;
  padding: 18px;
}

/* ===== MUSIC ALBUM COVER ===== */

.music-cover {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    border-radius: 28px;

    z-index: 0;
}

.music-item::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;
}

.music-number,
.music-info,
.music-note {
    position: relative;
    z-index: 2;
}

.music-note {
    width: 58px;
    height: 58px;

    border: 1px solid #333;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(18, 18, 18, 0.8);

    font-size: 25px;
}

.music-note img {
    display: none;
}

@media (max-width: 600px) {
    .music-item {
        grid-template-columns: 70px 1fr;
    }

    .music-note {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 600px) {
  .music-item {
    grid-template-columns: 70px 1fr 50px;
    gap: 15px;
  }

  .music-cover {
    width: 70px;
    height: 70px;
  }

  .music-note {
    width: 46px;
    height: 46px;
  }
}

/* ===== MUSIC CARD FINAL ===== */

.music-item {
    position: relative;
    display: block;
    height: 230px;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid #292929;
    border-radius: 16px;
    margin-bottom: 18px;
    cursor: pointer;
    background: #111;
}

/* thumbnail jadi FULL background */
.music-item .music-cover {
    position: absolute;
    inset: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    object-fit: cover;
    filter: blur(2px) brightness(0.48);
    transform: scale(1.03);
    z-index: 0;
}

/* overlay gelap */
.music-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
    z-index: 1;
}

/* nomor */
.music-item .music-number {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

/* judul + artist */
.music-item .music-info {
    position: absolute;
    left: 105px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.music-item .music-info h3 {
    margin: 0 0 6px;
    font-size: 28px;
    color: #fff;
}

.music-item .music-info p {
    margin: 0;
    font-size: 16px;
    color: #aaa;
}

/* logo musik kecil */
.music-item .music-note {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #444;
    background: rgba(10,10,10,0.65);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* gambar album yang sekarang ada di dalam music-note jangan ditampilkan */
.music-item .music-note img {
    display: none;
}

.music-item .music-note::after {
    content: "♫";
    color: #ff7043;
    font-size: 25px;
}

/* mobile */
@media (max-width: 600px) {
    .music-item {
        height: 190px;
        border-radius: 14px;
    }

    .music-item .music-number {
        left: 18px;
    }

    .music-item .music-info {
        left: 85px;
        right: 75px;
    }

    .music-item .music-info h3 {
        font-size: 25px;
    }

    .music-item .music-info p {
        font-size: 15px;
    }

    .music-item .music-note {
        right: 14px;
        width: 48px;
        height: 48px;
    }
}

/* ===== MUSIC CARD FINAL ===== */

.music-item {
    position: relative;
    display: block;
    height: 230px;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid #292929;
    border-radius: 16px;
    margin-bottom: 18px;
    cursor: pointer;
    background: #111;
}

.music-item .music-cover {
    position: absolute;
    inset: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    object-fit: cover;
    filter: blur(2px) brightness(0.48);
    transform: scale(1.03);
    z-index: 0;
}

.music-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
    z-index: 1;
}

.music-item .music-number {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.music-item .music-info {
    position: absolute;
    left: 105px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.music-item .music-info h3 {
    margin: 0 0 6px;
    font-size: 28px;
    color: #fff;
}

.music-item .music-info p {
    margin: 0;
    font-size: 16px;
    color: #aaa;
}

.music-item .music-note {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #444;
    background: rgba(10,10,10,0.65);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-item .music-note::after {
    content: "♫";
    color: #ff7043;
    font-size: 25px;
}

@media (max-width: 600px) {
    .music-item {
        height: 190px;
        border-radius: 14px;
    }

    .music-item .music-number {
        left: 18px;
    }

    .music-item .music-info {
        left: 85px;
        right: 75px;
    }

    .music-item .music-info h3 {
        font-size: 25px;
    }

    .music-item .music-info p {
        font-size: 15px;
    }

    .music-item .music-note {
        right: 14px;
        width: 48px;
        height: 48px;
    }
}

/* MUSIC NEW LAYOUT */

.music-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 45px;
}

.music-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 230px;
  padding: 30px;
  border: 1px solid #333;
  border-radius: 22px;
  overflow: hidden;
  box-sizing: border-box;
  gap: 20px;
  background: #111;
}

.music-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  transform: scale(1.08);
  z-index: 0;
}

.music-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.music-number {
  position: relative;
  z-index: 2;
  min-width: 55px;
  color: #ff7043;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
}

.music-logo {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  min-width: 70px;
  border: 1px solid #444;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.music-info {
  position: relative;
  z-index: 2;
  margin-left: 10px;
}

.music-info h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 34px;
  line-height: 1.05;
}

.music-info p {
  margin: 0;
  color: #aaa;
  font-size: 20px;
}

@media (max-width: 600px) {
  .music-item {
    min-height: 210px;
    padding: 24px;
    gap: 14px;
  }

  .music-number {
    min-width: 45px;
    font-size: 16px;
  }

  .music-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    font-size: 27px;
  }

  .music-info {
    margin-left: 0;
  }

  .music-info h3 {
    font-size: 30px;
  }

  .music-info p {
    font-size: 18px;
  }
}

/* ===== FIX MUSIC CARD ===== */

.music-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 90px 1fr;
    align-items: center;
    gap: 20px;

    min-height: 260px;
    padding: 30px 25px;

    border: 1px solid #292929;
    border-radius: 28px;
    overflow: hidden;
    background: #121212;
}

/* background album */
.music-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    filter: blur(2px);
    opacity: 0.65;

    z-index: 0;
}

/* gelap di atas background */
.music-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;
}

/* semua isi card di atas background */
.music-number,
.music-cover,
.music-info,
.music-note {
    position: relative;
    z-index: 2;
}

/* nomor lagu */
.music-number {
    color: #ff7043;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* cover album */
.music-cover {
    width: 90px;
    height: 90px;

    object-fit: cover;
    border-radius: 12px;
}

/* judul + artist */
.music-info h3 {
    margin: 0 0 5px;
    font-size: 25px;
    line-height: 1.05;
}

.music-info p {
    margin: 0;
    color: #777;
    font-size: 16px;
}

/* logo musik */
.music-note {
    width: 58px;
    height: 58px;

    border: 1px solid #333;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(18, 18, 18, 0.9);

    color: #ff7043;
    font-size: 22px;

    /* jangan sampai niban nomor */
    position: absolute;
    left: 45px;
    bottom: 8px;
}

/* jangan tampilkan gambar di dalam logo */
.music-note img {
    display: none !important;
}

/* mobile */
@media (max-width: 600px) {

    .music-item {
        grid-template-columns: 70px 70px 1fr;
        gap: 15px;
        padding: 22px 4px;
        min-height: 260px;
    }

    .music-cover {
        width: 70px;
        height: 70px;
    }

    .music-info h3 {
        font-size: 21px;
    }

    .music-info p {
        font-size: 14px;
    }

    .music-number {
        font-size: 16px;
    }

    .music-note {
        width: 58px;
        height: 58px;

        left: 45px;
        bottom: 8px;
    }
}

/* ===== MUSIC FINAL ===== */

.music-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 20px;

    min-height: 260px;
    padding: 25px;

    border: 1px solid #292929;
    border-radius: 28px;

    overflow: hidden;
    cursor: pointer;

    isolation: isolate;
}

.music-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    filter: blur(2px);
    transform: scale(1.04);

    z-index: -2;
}

.music-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    z-index: -1;
}

.music-number {
    position: relative;
    z-index: 2;

    color: #ff7043;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
}

.music-info {
    position: relative;
    z-index: 2;
}

.music-info h3 {
    margin: 0 0 5px;
    font-size: 36px;
    line-height: 1.05;
    color: white;
}

.music-info p {
    margin: 0;
    color: #aaa;
    font-size: 18px;
}

/* hapus logo/icon musik lama */
.music-note,
.music-logo,
.music-cover {
    display: none !important;
}

@media (max-width: 600px) {
    .music-item {
        grid-template-columns: 70px 1fr;
        min-height: 260px;
        padding: 22px;
        gap: 15px;
    }

    .music-info h3 {
        font-size: 30px;
    }

    .music-info p {
        font-size: 16px;
    }
}

item.innerHTML = `
    <a
        href="${song.link || '#'}"
        class="music-link"
        target="_blank"
        rel="noopener noreferrer"
    >
        <div class="music-bg"
            style="background-image:url('${song.cover || ""}')">
        </div>

        <div class="music-overlay"></div>

        <div class="music-number">
            ${String(index + 1).padStart(2, "0")}
        </div>

        <div class="music-info">
            <h3>${song.title || ""}</h3>
            <p>${song.artist || "Unknown Artist"}</p>
        </div>
    </a>
`;

/* ===== ABOUT SOCIALS ===== */

.about-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-socials a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  border: 1px solid #333;
  border-radius: 999px;
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: all .2s ease;
}

.about-socials a strong {
  font-size: 11px;
  letter-spacing: .5px;
}

.about-socials a:hover {
  color: #fff;
  border-color: #ff7043;
  transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

.hero .eyebrow,
.hero h1,
.hero .intro,
.hero .explore {
  opacity: 0;
  transform: translateY(25px);
  animation: heroReveal .8s cubic-bezier(.22,1,.36,1) forwards;
}

.hero h1 {
  animation-delay: .12s;
}

.hero .intro {
  animation-delay: .22s;
}

.hero .explore {
  animation-delay: .34s;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.journey-feature,
.gallery-item,
.story-card,
.about-grid {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible,
  .hero .eyebrow,
  .hero h1,
  .hero .intro,
  .hero .explore {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}


/* ===== MESSAGE SECTION VISIBILITY FIX ===== */

.messages-section .reveal {
  opacity: 1 !important;
  transform: none !important;
}


/* ===== IKSAN MESSAGE WALL V2 ===== */

.messages-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 160px;
}

.messages-intro {
  width: min(760px, 100%);
  margin: 0 auto 70px;
  text-align: center;
}

.messages-intro h2 {
  margin: 0;
  font-size: clamp(52px, 9vw, 105px);
  line-height: .88;
  letter-spacing: -6px;
}

.messages-intro h2 span {
  color: #ff7043;
}

.messages-intro .desc {
  max-width: 560px;
  margin: 30px auto 0;
  color: #888;
  font-size: 17px;
}

/* FORM */

.message-layout {
  display: block;
}

.message-form-card {
  position: relative;
  width: min(560px, 100%);
  box-sizing: border-box;
  margin: 0 auto 110px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(18,18,18,.82);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
}

.message-form-card form {
  display: flex;
  flex-direction: column;
}

.message-form-card label {
  display: flex;
  justify-content: space-between;
  margin: 0 0 9px;
  color: #aaa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.message-form-card label span {
  color: #555;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.message-form-card input,
.message-form-card textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #303030;
  outline: none;
  background: #101010;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  transition: .25s ease;
}

.message-form-card input {
  height: 52px;
  padding: 0 17px;
  margin: 0 0 22px;
  border-radius: 999px;
}

.message-form-card textarea {
  min-height: 130px;
  padding: 16px 17px;
  margin: 0 0 22px;
  border-radius: 20px;
  resize: vertical;
}

.message-form-card input::placeholder,
.message-form-card textarea::placeholder {
  color: #555;
}

.message-form-card input:focus,
.message-form-card textarea:focus {
  border-color: #ff7043;
  box-shadow: 0 0 0 4px rgba(255,112,67,.07);
}

/* SONG SEARCH */

.song-search {
  position: relative;
}

.song-results {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: none;
  max-height: 330px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #333;
  border-radius: 18px;
  background: #171717;
  box-shadow: 0 25px 70px rgba(0,0,0,.65);
}

.song-results.active {
  display: block;
}

.song-result {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  width: 100%;
  padding: 8px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: white;
  text-align: left;
  cursor: pointer;
}

.song-result:hover {
  background: #242424;
}

.song-result img {
  width: 52px;
  height: 52px;
  border-radius: 9px;
  object-fit: cover;
}

.song-result strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.song-result span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #777;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* SELECTED SONG */

.selected-song {
  display: grid;
  grid-template-columns: 52px 1fr 32px;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  padding: 9px;
  border: 1px solid #333;
  border-radius: 17px;
  background: #171717;
}

.selected-song img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.selected-song strong {
  display: block;
  color: #eee;
  font-size: 13px;
}

.selected-song span {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 11px;
}

.selected-song button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #333;
  border-radius: 50%;
  background: transparent;
  color: #888;
  cursor: pointer;
}

/* SEND BUTTON */

.message-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 54px;
  margin-top: 22px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #ff7043;
  color: #080808;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s ease;
}

.message-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,112,67,.2);
}

/* MESSAGE WALL */

.messages-list-wrap {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.messages-list-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
  padding-bottom: 14px;
  border-bottom: 1px solid #292929;
  color: #666;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.messages-list {
  display: flex;
  flex-direction: column;
  gap: 55px;
  padding: 10px 30px 70px;
}

/* FLOATING MESSAGE RECEIPT */

.message-card {
  position: relative;
  width: min(540px, 100%);
  box-sizing: border-box;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 25px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    ),
    #151515;
  box-shadow:
    0 25px 70px rgba(0,0,0,.4),
    0 1px 0 rgba(255,255,255,.04) inset;
  animation: messageReceiptIn .7s cubic-bezier(.22,1,.36,1) both;
  transition: transform .45s ease, box-shadow .45s ease;
}

.message-card:nth-child(odd) {
  align-self: flex-start;
  transform: rotate(-1.7deg);
}

.message-card:nth-child(even) {
  align-self: flex-end;
  transform: rotate(1.8deg);
}

.message-card:nth-child(3n) {
  transform: translateX(-25px) rotate(.8deg);
}

.message-card:hover {
  z-index: 5;
  transform: translateY(-10px) rotate(0deg) scale(1.015) !important;
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
}

@keyframes messageReceiptIn {
  from {
    opacity: 0;
    transform: translateY(35px) rotate(0deg);
  }

  to {
    opacity: 1;
  }
}

.message-to {
  color: #ff7043;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.message-name {
  margin-top: 7px;
  color: #666;
  font-size: 12px;
}

.message-body {
  margin: 25px 0 28px;
  color: #f5f5f5;
  font-size: 20px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.message-song {
  display: grid;
  grid-template-columns: 62px 1fr 38px;
  gap: 13px;
  align-items: center;
  padding: 10px;
  border: 1px solid #303030;
  border-radius: 17px;
  background: rgba(0,0,0,.3);
}

.message-song img {
  width: 62px;
  height: 62px;
  border-radius: 11px;
  object-fit: cover;
}

.message-song strong {
  display: block;
  color: #eee;
  font-size: 14px;
}

.message-song span {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 12px;
}

.message-song a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  color: #aaa;
  text-decoration: none;
}

.messages-empty,
.messages-loading {
  color: #666;
}

/* MOBILE */

@media (max-width: 800px) {

  .messages-intro {
    margin-bottom: 50px;
  }

  .message-form-card {
    width: 100%;
    margin-bottom: 80px;
  }

  .messages-list {
    gap: 38px;
    padding: 10px 10px 60px;
  }

  .message-card {
    width: 88%;
  }

}

@media (max-width: 600px) {

  .messages-section {
    padding-bottom: 100px;
  }

  .messages-intro h2 {
    font-size: clamp(50px, 15vw, 76px);
    letter-spacing: -4px;
  }

  .messages-intro .desc {
    font-size: 15px;
  }

  .message-form-card {
    padding: 22px;
    border-radius: 23px;
  }

  .message-card {
    width: 91%;
    padding: 23px;
    border-radius: 22px;
  }

  .message-body {
    font-size: 18px;
  }

  .message-song {
    grid-template-columns: 52px 1fr;
  }

  .message-song img {
    width: 52px;
    height: 52px;
  }

  .message-song a {
    display: none;
  }

}


/* ===== MESSAGE RECEIPT CAROUSEL ===== */

.messages-list-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.messages-list-head {
  width: min(1000px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

/* viewport carousel */
.messages-list {
  position: relative;
  display: block;
  width: 100%;
  height: 470px;
  padding: 0;
  overflow: hidden;
}

/* receipt */
.messages-list .message-card {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(760px, calc(100% - 50px));
  min-height: 310px;

  box-sizing: border-box;
  margin: 0;
  padding: 38px 42px;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.06),
      rgba(255,255,255,.018)
    ),
    #171717;

  box-shadow:
    0 35px 100px rgba(0,0,0,.45),
    0 1px 0 rgba(255,255,255,.05) inset;

  opacity: 0;

  transform:
    translate3d(120vw, -50%, 0)
    rotate(2deg);

  animation:
    receiptCarousel 16s cubic-bezier(.65,0,.35,1)
    infinite;
}

/* reset previous nth-child positioning */
.messages-list .message-card:nth-child(odd),
.messages-list .message-card:nth-child(even),
.messages-list .message-card:nth-child(3n) {
  align-self: auto;
  transform:
    translate3d(120vw, -50%, 0)
    rotate(2deg);
}

/*
  4 messages = 4 positions.
  Each receipt gets its own turn.
*/

.messages-list .message-card:nth-child(1) {
  animation-delay: 0s;
}

.messages-list .message-card:nth-child(2) {
  animation-delay: 4s;
}

.messages-list .message-card:nth-child(3) {
  animation-delay: 8s;
}

.messages-list .message-card:nth-child(4) {
  animation-delay: 12s;
}

.messages-list .message-card:nth-child(5) {
  animation-delay: 16s;
}

.messages-list .message-card:nth-child(6) {
  animation-delay: 20s;
}

.messages-list .message-card:nth-child(7) {
  animation-delay: 24s;
}

.messages-list .message-card:nth-child(8) {
  animation-delay: 28s;
}

@keyframes receiptCarousel {

  /* masuk dari kanan */
  0% {
    opacity: 0;
    transform:
      translate3d(120vw, -50%, 0)
      rotate(3deg);
  }

  /* mulai terlihat */
  8% {
    opacity: 1;
  }

  /* berhenti di tengah */
  25% {
    opacity: 1;
    transform:
      translate3d(-50%, -50%, 0)
      rotate(-1deg);
  }

  /* stay sebentar */
  50% {
    opacity: 1;
    transform:
      translate3d(-50%, -50%, 0)
      rotate(-1deg);
  }

  /* mulai keluar */
  67% {
    opacity: 1;
    transform:
      translate3d(-50%, -50%, 0)
      rotate(1deg);
  }

  /* keluar ke kiri */
  75% {
    opacity: 0;
    transform:
      translate3d(-120vw, -50%, 0)
      rotate(-3deg);
  }

  /* tunggu giliran */
  100% {
    opacity: 0;
    transform:
      translate3d(-120vw, -50%, 0)
      rotate(-3deg);
  }
}

/* receipt content */

.messages-list .message-to {
  color: #ff7043;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.messages-list .message-name {
  margin-top: 8px;
  color: #666;
  font-size: 13px;
}

.messages-list .message-body {
  max-width: 620px;
  margin: 35px 0 30px;

  color: #f5f5f5;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.35;
}

/* song strip inside receipt */

.messages-list .message-song {
  width: min(100%, 520px);
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 62px 1fr 38px;
  gap: 14px;
  align-items: center;

  padding: 10px;

  border: 1px solid #303030;
  border-radius: 18px;

  background: #101010;
}

.messages-list .message-song img {
  width: 62px;
  height: 62px;
  border-radius: 11px;
  object-fit: cover;
}

.messages-list .message-song strong {
  display: block;
  color: #eee;
  font-size: 15px;
}

.messages-list .message-song span {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 12px;
}

.messages-list .message-song a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border: 1px solid #333;
  border-radius: 50%;

  color: #aaa;
  text-decoration: none;
}

/* mobile */

@media (max-width: 600px) {

  .messages-list {
    height: 430px;
  }

  .messages-list .message-card {
    width: calc(100% - 32px);
    min-height: 280px;

    padding: 27px 24px;
    border-radius: 24px;
  }

  .messages-list .message-body {
    margin: 27px 0 24px;
    font-size: 20px;
  }

  .messages-list .message-song {
    grid-template-columns: 52px 1fr;
    width: 100%;
  }

  .messages-list .message-song img {
    width: 52px;
    height: 52px;
  }

  .messages-list .message-song a {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {

  .messages-list .message-card {
    animation: none;
    opacity: 1;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 20px auto;
  }

  .messages-list {
    height: auto;
    overflow: visible;
  }

}

/* ===== IKSAN RECEIPT WALL — DARK 2x2 CAROUSEL ===== */

.messages-section {
  position: relative;
  overflow: hidden;
  background: rgba(14, 14, 14, .72);
}

.messages-list-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.messages-list {
  position: relative;
  width: 100%;
  height: 680px;
  margin-top: 55px;
  overflow: hidden;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255,112,67,.045),
      transparent 55%
    );
}

/* setiap halaman berisi 4 receipt */
.receipt-page {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;

  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 520px));
  grid-template-rows: repeat(2, minmax(210px, 1fr));

  justify-content: center;
  align-content: center;

  gap: 30px 35px;
  padding: 45px 7%;
  box-sizing: border-box;
}

/* RECEIPT */

.receipt-page .message-card {
  position: relative;

  width: 100%;
  min-height: 205px;

  box-sizing: border-box;
  padding: 25px 28px;

  border: 1px solid rgba(0,0,0,.13);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #eeeeec,
      #dededb
    );

  color: #151515;

  box-shadow:
    0 18px 45px rgba(0,0,0,.24),
    0 1px 0 rgba(255,255,255,.8) inset;

  transform: rotate(-.8deg);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.receipt-page .message-card:nth-child(2) {
  transform: rotate(.9deg);
}

.receipt-page .message-card:nth-child(3) {
  transform: rotate(.6deg);
}

.receipt-page .message-card:nth-child(4) {
  transform: rotate(-1deg);
}

.receipt-page .message-card:hover {
  transform: translateY(-7px) rotate(0deg) !important;
  box-shadow:
    0 28px 60px rgba(0,0,0,.32),
    0 1px 0 rgba(255,255,255,.8) inset;
}

/* handwritten feel */

.receipt-page .message-body {
  margin: 20px 0;

  color: #202020;

  font-family:
    "Segoe Print",
    "Bradley Hand",
    "Comic Sans MS",
    cursive;

  font-size: 19px;
  line-height: 1.35;
  letter-spacing: .1px;
}

/* TO IKSAN */

.receipt-page .message-to {
  display: inline-block;

  padding: 5px 11px;

  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;

  color: #444;

  font-family:
    "Segoe Print",
    "Bradley Hand",
    cursive;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;

  background: rgba(255,255,255,.32);
}

/* sender */

.receipt-page .message-name {
  margin-top: 9px;

  color: #777;

  font-family:
    "Segoe Print",
    "Bradley Hand",
    cursive;

  font-size: 12px;
}

/* SONG */

.receipt-page .message-song {
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  gap: 11px;
  align-items: center;

  width: 100%;
  box-sizing: border-box;

  padding: 8px;

  border: 1px solid rgba(0,0,0,.11);
  border-radius: 14px;

  background: rgba(255,255,255,.48);
}

.receipt-page .message-song img {
  width: 48px;
  height: 48px;

  border-radius: 9px;

  object-fit: cover;
}

.receipt-page .message-song strong {
  display: block;

  color: #202020;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 13px;
  font-weight: 700;
}

.receipt-page .message-song span {
  display: block;

  margin-top: 3px;

  color: #777;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
}

.receipt-page .message-song a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border: 1px solid rgba(0,0,0,.16);
  border-radius: 50%;

  color: #333;

  text-decoration: none;

  background: rgba(255,255,255,.35);
}

/* PAGE ANIMATION */

.receipt-page {
  animation: receiptPageLoop 18s linear infinite;
}

@keyframes receiptPageLoop {

  0% {
    transform: translateX(105%);
  }

  8% {
    transform: translateX(105%);
  }

  22% {
    transform: translateX(0);
  }

  48% {
    transform: translateX(0);
  }

  62% {
    transform: translateX(-105%);
  }

  100% {
    transform: translateX(-105%);
  }

}

/* mobile */

@media (max-width: 700px) {

  .messages-list {
    height: 820px;
  }

  .receipt-page {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 170px);

    gap: 20px;

    padding: 30px 24px;
  }

  .receipt-page .message-card {
    min-height: 170px;
    padding: 20px;
  }

  .receipt-page .message-body {
    margin: 14px 0;
    font-size: 16px;
  }

  .receipt-page .message-song {
    grid-template-columns: 42px 1fr 28px;
  }

  .receipt-page .message-song img {
    width: 42px;
    height: 42px;
  }

}


/* ===== GALLERY LIGHTBOX ===== */

.gallery-item {
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(5,5,5,.94);
  backdrop-filter: blur(14px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .35s ease,
    visibility .35s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;

  width: min(1000px, 82vw);
  height: min(82vh, 760px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#lightbox-image {
  max-width: 100%;
  max-height: calc(100% - 45px);

  object-fit: contain;

  border-radius: 14px;

  opacity: 0;
  transform: scale(.94) translateY(15px);

  transition:
    opacity .4s cubic-bezier(.22,1,.36,1),
    transform .4s cubic-bezier(.22,1,.36,1);

  box-shadow:
    0 35px 100px rgba(0,0,0,.6);
}

#lightbox-image.lightbox-image-show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.lightbox-caption {
  margin-top: 16px;

  color: #777;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;

  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #333;
  border-radius: 50%;

  background: rgba(20,20,20,.8);
  color: #aaa;

  cursor: pointer;

  transition:
    color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: #fff;
  border-color: #ff7043;
  transform: scale(1.08);
}

.lightbox-close {
  top: 25px;
  right: 25px;

  width: 46px;
  height: 46px;

  font-size: 27px;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 50px;

  font-size: 20px;
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 600px) {

  .gallery-lightbox {
    padding: 18px;
  }

  .lightbox-content {
    width: 100%;
    height: 80vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 25px;

    width: 45px;
    height: 45px;
  }

  .lightbox-prev {
    left: 25px;
  }

  .lightbox-next {
    right: 25px;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
  }

}

/* ===== IKSAN MUSIC — CINEMATIC ===== */

.music-section {
  position: relative;
  overflow: hidden;
}

.music-list {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-top: 55px;
  border-top: 0;
}

.music-item {
  position: relative;

  min-height: 250px;
  padding: 0;

  display: block;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;

  background: #151515;

  transform: translateY(0);

  transition:
    transform .5s cubic-bezier(.22,1,.36,1),
    border-color .4s ease,
    box-shadow .5s ease;
}

.music-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255,112,67,.35);

  box-shadow:
    0 30px 80px rgba(0,0,0,.4);
}

.music-link {
  position: relative;

  display: flex;
  align-items: flex-end;

  min-height: 250px;
  padding: 32px;

  box-sizing: border-box;

  color: #fff;
  text-decoration: none;

  overflow: hidden;
}

/* blurred album artwork */

.music-bg {
  position: absolute;
  inset: -25px;

  background-size: cover;
  background-position: center;

  filter: blur(16px);
  transform: scale(1.08);

  opacity: .30;

  transition:
    transform 1s cubic-bezier(.22,1,.36,1),
    opacity .6s ease;
}

.music-item:hover .music-bg {
  transform: scale(1.16);
  opacity: .42;
}

/* dark cinematic overlay */

.music-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8,8,8,.96) 0%,
      rgba(8,8,8,.72) 42%,
      rgba(8,8,8,.28) 100%
    );

  z-index: 1;
}

/* album number */

.music-number {
  position: absolute;

  top: 28px;
  left: 30px;

  z-index: 3;

  color: #ff7043;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

/* information */

.music-info {
  position: relative;
  z-index: 3;

  max-width: 620px;

  padding-top: 70px;
}

.music-info h3 {
  margin: 0 0 8px;

  color: #f5f5f5;

  font-size: clamp(28px, 4vw, 48px);
  line-height: .95;

  letter-spacing: -2px;

  transition:
    transform .5s cubic-bezier(.22,1,.36,1);
}

.music-info p {
  margin: 0;

  color: #aaa;

  font-size: 14px;
  letter-spacing: .3px;
}

.music-item:hover .music-info h3 {
  transform: translateX(8px);
}

/* album cover tile */

.music-link::after {
  content: "";

  position: absolute;

  right: 35px;
  bottom: 35px;

  width: 150px;
  height: 150px;

  z-index: 2;

  border-radius: 18px;

  background-image: var(--music-cover);
  background-size: cover;
  background-position: center;

  box-shadow:
    0 25px 55px rgba(0,0,0,.45);

  transform:
    rotate(3deg)
    translateY(5px);

  opacity: .95;

  transition:
    transform .65s cubic-bezier(.22,1,.36,1),
    box-shadow .5s ease;
}

.music-item:hover .music-link::after {
  transform:
    rotate(0deg)
    translateY(-5px)
    scale(1.04);

  box-shadow:
    0 30px 70px rgba(0,0,0,.55);
}

/* mobile */

@media (max-width: 700px) {

  .music-item,
  .music-link {
    min-height: 220px;
  }

  .music-link {
    padding: 24px;
  }

  .music-number {
    top: 22px;
    left: 24px;
  }

  .music-info {
    padding-top: 55px;
    padding-right: 100px;
  }

  .music-info h3 {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .music-link::after {
    right: 18px;
    bottom: 18px;

    width: 82px;
    height: 82px;

    border-radius: 12px;
  }

}


/* ===== MUSIC CARD REFINEMENT ===== */

.music-item {
  min-height: 220px;
}

.music-link {
  min-height: 220px;
  padding: 32px 35px;
}

.music-info {
  max-width: calc(100% - 190px);
  padding-top: 55px;
}

.music-info h3 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  max-width: 520px;
}

.music-info p {
  margin-top: 10px;
}

.music-link::after {
  width: 145px;
  height: 145px;
  right: 32px;
  bottom: 32px;
}

/* ===== MOBILE MUSIC ===== */

@media (max-width: 700px) {

  .music-list {
    margin-top: 35px;
    gap: 18px;
  }

  .music-item {
    min-height: 190px;
    border-radius: 24px;
  }

  .music-link {
    min-height: 190px;
    padding: 24px;
    align-items: center;
  }

  .music-number {
    top: 22px;
    left: 24px;
  }

  .music-info {
    max-width: calc(100% - 105px);
    padding-top: 35px;
    padding-right: 0;
  }

  .music-info h3 {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.02;
    letter-spacing: -1px;

    /* jangan sampai satu kata dipotong */
    overflow-wrap: normal;
    word-break: normal;
  }

  .music-info p {
    margin-top: 8px;
    font-size: 13px;
  }

  .music-link::after {
    right: 20px;
    bottom: 50%;
    transform: translateY(50%) rotate(2deg);

    width: 88px;
    height: 88px;

    border-radius: 13px;
  }

  .music-item:hover .music-link::after {
    transform:
      translateY(50%)
      rotate(0deg)
      scale(1.04);
  }

  .music-item:hover .music-info h3 {
    transform: none;
  }

}

/* very small phones */

@media (max-width: 380px) {

  .music-info {
    max-width: calc(100% - 92px);
  }

  .music-info h3 {
    font-size: 24px;
  }

  .music-link::after {
    width: 76px;
    height: 76px;
    right: 16px;
  }

}

/* ===== MUSIC MOBILE FINAL FIX ===== */

@media (max-width: 700px) {

  .music-item {
    display: block !important;
    min-height: 190px !important;
  }

  .music-link {
    position: relative !important;
    display: block !important;
    min-height: 190px !important;
    padding: 24px !important;
    box-sizing: border-box !important;
  }

  .music-number {
    position: absolute !important;
    top: 22px !important;
    left: 24px !important;
    z-index: 5 !important;
  }

  .music-info {
    position: absolute !important;
    left: 24px !important;
    right: 120px !important;
    bottom: 25px !important;

    max-width: none !important;
    padding: 0 !important;
    z-index: 5 !important;
  }

  .music-info h3 {
    margin: 0 !important;

    max-width: none !important;

    font-size: 25px !important;
    line-height: 1.03 !important;
    letter-spacing: -1px !important;

    overflow: visible !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .music-info p {
    margin: 7px 0 0 !important;
    font-size: 13px !important;
  }

  .music-link::after {
    width: 82px !important;
    height: 82px !important;

    right: 20px !important;
    bottom: 50% !important;

    transform:
      translateY(50%)
      rotate(2deg) !important;
  }

  .music-item:hover .music-link::after {
    transform:
      translateY(50%)
      rotate(0deg)
      scale(1.04) !important;
  }

  .music-item:hover .music-info h3 {
    transform: none !important;
  }

}

@media (max-width: 380px) {

  .music-info {
    right: 105px !important;
  }

  .music-info h3 {
    font-size: 22px !important;
  }

  .music-link::after {
    width: 72px !important;
    height: 72px !important;
    right: 16px !important;
  }

}


/* ===== MUSIC — FULL ARTWORK CARD ===== */

.music-item {
  min-height: 220px !important;
  overflow: hidden;
}

.music-link {
  position: relative !important;
  min-height: 220px !important;
  padding: 32px !important;
  overflow: hidden !important;
}

/* FULL COVER BACKGROUND */

.music-bg {
  position: absolute !important;
  inset: -20px !important;

  background-size: cover !important;
  background-position: center !important;

  filter: blur(2px) !important;
  transform: scale(1.08) !important;

  opacity: .72 !important;

  transition:
    transform 1s cubic-bezier(.22,1,.36,1),
    opacity .6s ease,
    filter .6s ease !important;
}

.music-item:hover .music-bg {
  transform: scale(1.15) !important;
  opacity: .82 !important;
  filter: blur(1px) !important;
}

/* DARK OVERLAY */

.music-overlay {
  position: absolute !important;
  inset: 0 !important;

  background:
    linear-gradient(
      90deg,
      rgba(5,5,5,.94) 0%,
      rgba(5,5,5,.70) 48%,
      rgba(5,5,5,.30) 100%
    ) !important;

  z-index: 1 !important;
}

/* SUBTLE DARK GRAIN / VIGNETTE */

.music-link::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 2;

  background:
    radial-gradient(
      circle at 85% 50%,
      transparent 0,
      rgba(0,0,0,.22) 55%,
      rgba(0,0,0,.48) 100%
    );

  pointer-events: none;
}

/* REMOVE OLD COVER TILE */

.music-link::after {
  content: "♪" !important;

  position: absolute !important;

  right: 32px !important;
  top: 50% !important;

  width: 78px !important;
  height: 78px !important;

  z-index: 4 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 1px solid rgba(255,255,255,.28) !important;
  border-radius: 50% !important;

  background:
    rgba(10,10,10,.30) !important;

  backdrop-filter: blur(8px) !important;

  color: rgba(255,255,255,.9) !important;

  font-size: 28px !important;
  font-weight: 300 !important;

  transform:
    translateY(-50%)
    rotate(0deg) !important;

  box-shadow:
    0 15px 40px rgba(0,0,0,.3),
    inset 0 0 25px rgba(255,255,255,.05) !important;

  transition:
    transform .7s cubic-bezier(.22,1,.36,1),
    background .4s ease,
    border-color .4s ease !important;
}

.music-item:hover .music-link::after {
  transform:
    translateY(-50%)
    rotate(12deg)
    scale(1.08) !important;

  border-color: rgba(255,112,67,.65) !important;

  background:
    rgba(255,112,67,.12) !important;
}

/* NUMBER */

.music-number {
  position: absolute !important;

  top: 28px !important;
  left: 30px !important;

  z-index: 5 !important;

  color: #ff7043 !important;

  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
}

/* TEXT */

.music-info {
  position: absolute !important;

  left: 30px !important;
  right: 140px !important;
  bottom: 28px !important;

  max-width: none !important;
  padding: 0 !important;

  z-index: 5 !important;
}

.music-info h3 {
  margin: 0 !important;

  color: #fff !important;

  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1 !important;

  letter-spacing: -1.5px !important;
}

.music-info p {
  margin: 9px 0 0 !important;

  color: rgba(255,255,255,.72) !important;

  font-size: 14px !important;
}

/* MOBILE */

@media (max-width: 700px) {

  .music-item,
  .music-link {
    min-height: 205px !important;
  }

  .music-link {
    padding: 24px !important;
  }

  .music-number {
    top: 22px !important;
    left: 24px !important;
  }

  .music-info {
    left: 24px !important;
    right: 105px !important;
    bottom: 25px !important;
  }

  .music-info h3 {
    font-size: 26px !important;
    line-height: 1.03 !important;
    letter-spacing: -1px !important;
  }

  .music-info p {
    margin-top: 7px !important;
    font-size: 13px !important;
  }

  .music-link::after {
    right: 20px !important;

    width: 65px !important;
    height: 65px !important;

    font-size: 23px !important;
  }

}

/* VERY SMALL SCREEN */

@media (max-width: 380px) {

  .music-info {
    right: 92px !important;
  }

  .music-info h3 {
    font-size: 23px !important;
  }

  .music-link::after {
    right: 16px !important;

    width: 58px !important;
    height: 58px !important;
  }

}


/* ===== MUSIC COVER — BRIGHTER ===== */

.music-bg {
  opacity: .95 !important;
  filter: blur(1px) !important;
  transform: scale(1.06) !important;
}

.music-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5,5,5,.72) 0%,
      rgba(5,5,5,.38) 42%,
      rgba(5,5,5,.08) 100%
    ) !important;
}

.music-link::before {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.18),
      transparent 65%
    ) !important;
}

.music-item:hover .music-bg {
  opacity: 1 !important;
  transform: scale(1.10) !important;
}

@media (max-width: 700px) {

  .music-bg {
    opacity: .92 !important;
    filter: blur(1px) !important;
  }

  .music-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5,5,5,.68) 0%,
        rgba(5,5,5,.30) 50%,
        rgba(5,5,5,.06) 100%
      ) !important;
  }

}

/* ===== MUSIC CARD — REMOVE BLACK EDGES ===== */

.music-item {
  height: 220px !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.music-link {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 32px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.music-bg {
  position: absolute !important;
  top: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  left: -2px !important;

  width: auto !important;
  height: auto !important;

  background-size: cover !important;
  background-position: center !important;
}

/* mobile */
@media (max-width: 700px) {

  .music-item {
    height: 205px !important;
    min-height: 0 !important;
  }

  .music-link {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }

}


/* ===== FULL MUSIC BADGE SPIN ===== */

.music-link::after {
  animation: fullMusicBadgeSpin 8s linear infinite !important;
  transform-origin: center center !important;
}

@keyframes fullMusicBadgeSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.music-item:hover .music-link::after {
  animation-duration: 4s !important;
}

/* jangan ada transform hover lain yang override rotasi */
.music-item:hover .music-link::after {
  border-color: rgba(255,112,67,.65) !important;
  background: rgba(255,112,67,.12) !important;
}

@media (prefers-reduced-motion: reduce) {
  .music-link::after {
    animation: none !important;
  }
}


/* ===== STORIES — FINAL POLISH ===== */
.stories-list .story-card {
  min-height: 500px !important;
  padding: 36px !important;
  justify-content: flex-end !important;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,112,67,.12), transparent 32%),
    linear-gradient(145deg,#171717,#101010) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.22) !important;
}

.stories-list .story-card::before,
.stories-list .story-card::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  pointer-events: none !important;
}

.stories-list .story-card::before {
  width: 280px !important;
  height: 280px !important;
  right: -130px !important;
  top: -130px !important;
  border: 1px solid rgba(255,112,67,.16) !important;
  border-radius: 50% !important;
  box-shadow:
    0 0 0 55px rgba(255,112,67,.025),
    0 0 0 110px rgba(255,112,67,.015) !important;
}

.stories-list .story-card::after {
  content: "STORY" !important;
  right: -28px !important;
  bottom: 115px !important;
  font-size: 76px !important;
  font-weight: 900 !important;
  letter-spacing: -5px !important;
  color: rgba(255,255,255,.025) !important;
  transform: rotate(-90deg) !important;
}

.stories-list .story-card > * {
  position: relative !important;
  z-index: 3 !important;
}

.stories-list .story-top {
  margin-bottom: 16px !important;
  color: #ff7043 !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
}

.stories-list .story-card h3 {
  margin-bottom: 14px !important;
  color: #f5f5f5 !important;
  font-size: clamp(32px,4vw,52px) !important;
  line-height: .98 !important;
  letter-spacing: -2px !important;
}

.stories-list .story-preview {
  margin-bottom: 26px !important;
  max-width: 560px !important;
  color: #999 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.stories-list .story-link {
  color: #fff !important;
  border-color: #555 !important;
}

.stories-list .story-link:hover {
  color: #ff7043 !important;
  border-color: #ff7043 !important;
}

@media (max-width:600px) {
  .stories-list .story-card {
    min-height: 440px !important;
    padding: 28px !important;
  }

  .stories-list .story-card h3 {
    font-size: 36px !important;
  }

  .stories-list .story-preview {
    font-size: 14px !important;
  }
}

