@font-face {
  font-family: 'RightGrotesk';
  src: url('../fonts/RightGrotesk-CompactBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/*
  ROOT
*/
:root {
  /* --color-primary: #2563eb;
  --color-secondary: #9333ea; */
  --color-text: #000;
  --color-bg: #F3F3F3;

  --font-base: 'Host Grotesk', system-ui, sans-serif;

  --radius-img: 2.0625rem;
  --radius-btn: 1.5rem;

  --plyr-color-main: #fff;
  --plyr-video-control-color: #fff;
  --plyr-video-background: #f3f3f3;
}
/*
  GLOBAL CSS
*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html, body {
  height: 100%;
  font-family: var(--font-base);
  color: var(--color-text);
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: var(--color-bg);
}
/* img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
} */
img, picture, video {
  border-radius: var(--radius-img);
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
h1, h2, h3, h4, h5 {
  font-family: 'RightGrotesk', system-ui, sans-serif;
  font-weight: 900;
}
h1 {
  font-size: 13.5rem;
  line-height: 11rem;
}
h2 {
  font-size: 6rem;
  line-height: 1.1;
}
h3 {
  font-size: 3rem;
  line-height: 2.8125rem; /* 93.75% */
}
.primary-btn {
    background: transparent;
    display: flex;
    padding: 0.625rem 1.875rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: var(--radius-btn);
    border: 1px solid #000;
    color: var(--color-text);
    transition: all 0.3s ease;
    width: fit-content;
}

.primary-btn:hover {
    background: #000;
    color: #fff;
}

.secondary-btn {
    background: #000;
    display: flex;
    padding: 0.625rem 1.875rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: var(--radius-btn);
    border: 1px solid #000;
    color: #fff;
    transition: all 0.3s ease;
    width: fit-content;
}
.secondary-btn:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}
.section-padding {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}
.gap-625 {
    gap: 0.625rem;
}
.gap-1875 {
    gap: 1.875rem;
}
.object-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.border-radius-img {
    border-radius: var(--radius-img);
}
.h1-small {
  font-family: "RightGrotesk", system-ui, sans-serif;
  font-size: 8rem;
}

/* 
  ANIMATIONS
*/
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* 
  HEADER
*/
.site-header {
  padding-top: 1.88rem;
  padding-bottom: 1.88rem;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

body.header-is-sticky {
  padding-top: var(--header-height);
}

.site-header .header-social {
  gap: 1.5rem;
}

.site-header .social-link {
  color: var(--color-text);
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}

.site-header .social-link:hover {
  opacity: 0.7;
}

.site-header .nav-link {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: all 0.3s ease-in-out;
}

.site-header .nav-link:hover {
  opacity: 0.7;
}

.site-header .header-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.site-header .header-toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
}


/* 
  SIDEBAR
*/
.site-sidebar {
  position: fixed;
  top: 0rem;
  right: 0rem;
  width: auto;
  min-width: 320px;
  height: 100vh;
  min-height: auto;
  background: #fff;
  z-index: 1050;
  padding: 3.75rem;
  transform: translateX(120%);
  transition: transform 0.3s ease-in-out;
  border-top-left-radius: var(--radius-btn);
  border-bottom-left-radius: var(--radius-btn);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.site-sidebar.is-active {
  transform: translateX(0); /* Relative to its positioned right location */
}

.site-sidebar .sidebar-close {
  cursor: pointer;
}

.site-sidebar .nav-label,
.site-sidebar .social-label {
  font-size: 0.875rem;
  color: #BDBDBD; /* Placeholder specific color for gray label */
  letter-spacing: 0.05em;
}

.site-sidebar .nav-label,
.sidebar-footer .social-label {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.site-sidebar .sidebar-nav .nav-link {
  font-family: 'RightGrotesk', sans-serif;
  font-size: 2.5rem; /* Estimated large size based on image */
  line-height: 2.8125rem;
  color: #000;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.site-sidebar .sidebar-nav .sidebar-nav-list {
  gap: 0.625rem;
}
.site-sidebar .sidebar-nav .nav-link:hover {
  color: var(--color-primary, #000); /* Fallback */
  opacity: 0.7;
}

.site-sidebar .social-link {
  color: #000;
  font-size: 1.5rem;
  text-decoration: none;
}

.sidebar-footer .social-links {
  gap: 1.25rem;
}

/* 
  HERO
*/
.hero-label {
  color: #C8C8C8;
  font-size: 0.875rem;
  letter-spacing: 0.035rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero-date,
.hero-location {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-date:hover,
.hero-location:hover {
  transform: translateY(-0.3125rem);
  opacity: 0.85;
}

.hero-date {
  font-family: 'RightGrotesk', sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.hero-location {
  font-family: 'RightGrotesk', sans-serif;
  font-size: 2.25rem;
  line-height: 1.1;
}

.hero-event-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-event-link {
    cursor: pointer;
}

/* 
  LATEST POST
*/
.latest-post-image {
    position: relative;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-radius: var(--radius-img);
    display: block;
    width: 100%;
}

.latest-post-image img,
.latest-post-image picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.placeholder-img {
  border-radius: var(--radius-img);
  display: block;
}

.post-title,
.post-title a {
    font-family: 'RightGrotesk', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    color: var(--color-text);
    transition: all 0.3s ease-in-out;
}

.post-title a:hover,
a:hover .post-title {
    opacity: 0.7;
}

.post-excerpt {
    font-size: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-meta {
    font-size: 0.875rem; /* ~14px */
    letter-spacing: 0.05em;
    font-weight: 500;
}

.post-category {
    color: #000;
    font-weight: 800;
    font-size: 0.875rem;
}

.post-date {
    color: #000;
    font-size: 0.875rem;
}

.post-arrow {
    color: #000;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.post-arrow:hover {
    transform: translateX(5px);
}

.fallback-img {
    height: 400px;
}

/* CONCERTS SECTION */
a .concert-card-nearest,
a .concert-location,
a .concert-event-name,
a .concert-date-large .day,
a .concert-date-large .month {
  color: #000;
}

.concert-card-nearest {
    border-radius: var(--radius-img);
    padding: 1.875rem 3.75rem 1.875rem 1.875rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a:hover .concert-card-nearest {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
}
.concert-date-large {
  gap: 0.625rem;
}

.concert-date-large .day {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 8rem;
    line-height: 5.5625rem;
}
.concert-date-large .month {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 4rem;
    line-height: 3.5625rem;
}
.concert-location {
    font-family: "RightGrotesk";
    font-size: 3rem;
    line-height: 0.9;
}
.concert-event-name {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.07rem;
}
.concert-image-wrapper {
    position: relative;
    aspect-ratio: 1.2 / 1;
}
.concert-image-wrapper img {
    /* Ensure image respects border radius and fills height */
    border-radius: var(--radius-img);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.concerts-discover-btn {
    position: absolute;
    bottom: -3.125rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.875rem 1.25rem 1.25rem 1.25rem;
    width: 10rem;
    height: 10rem;
    border-radius: 18.75rem;
    background: #F0D291;
    z-index: 2;
    transition: transform 0.3s ease;

    gap: 0.375rem;
}

.concerts-discover-btn:hover {
    transform: translateX(-50%) scale(1.05);
}
.concerts-discover-btn span {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.25rem;
}
.concert-list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.825rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

a:hover .concert-list-item {
  transform: translateX(0.3125rem);
  opacity: 0.8;
}

a .concert-list-item .concert-item-date,
a .concert-list-item .concert-item-city,
a .concert-list-item .concert-item-name {
  color: #000;
}

.concert-list-item .concert-item-date {
  font-family: "RightGrotesk", system-ui, sans-serif;
  font-size: 3rem;
  line-height: 2.8125rem;
}
.concert-list-item .concert-item-city {
  font-family: "RightGrotesk", system-ui, sans-serif;
  font-size: 2.5rem;
  line-height: 2.0625rem; /* 82.5% */
}
.concert-list-item .concert-item-name {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
}

/* NEWS SECTION */
.news-image-wrapper {
    height: 100%;
    width: 100%;
    aspect-ratio: 1.2 / 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-img);
}
.news-image-wrapper img {
    border-radius: var(--radius-img);
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.news-card {
    transition: transform 0.3s ease;
}
.news-card:hover {
    transform: translateY(-5px);
}

/* MERCH SECTION */
.merch-headline {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 4.5rem;
    line-height: 0.9;
}

/* VIDEO SECTION */
.video-container {
    border-radius: var(--radius-img);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #f3f3f3;
    aspect-ratio: 16/9;
}

/* Plyr Customization */
.plyr--video {
    border-radius: var(--radius-img);
    max-height: 100%;
}
.plyr__control--overlaid {
    background: transparent !important;
    padding: 0 !important;
    width: 33px !important;
    height: 42px !important;
    border: none;
    box-shadow: none;
}
.plyr--playing .plyr__control--overlaid {
    opacity: 0 !important;
    visibility: hidden !important;
}
.plyr__control--overlaid svg {
    display: none !important;
}
.plyr__poster {
    background-size: cover;
    background-position: center;
}
.plyr__video-embed iframe {
    top: 0;
}
.plyr__control--overlaid::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/play.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}
.plyr__control--overlaid:hover::after {
    transform: scale(1.1);
}

/* GALLERY SECTION */
.gallery-accordion {
    height: 550px;
    width: 100%;
}
.gallery-item {
    flex: 1 1 0%;
    transition: flex 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-img);
    text-decoration: none;
    display: block;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}
/* Active State (Controlled by JS) */
.gallery-item.active {
    flex: 3.5 1 0%;
    background: #fff;
    padding: 2rem;
    transition: flex 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

/* IMAGE SIDE */
.gallery-img-side {
    width: 100%;
    height: 100%;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                border-radius 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0;
    overflow: hidden;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.gallery-img-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 52.73%, rgba(0, 0, 0, 0.60) 100%);
    opacity: 1;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 0;
}
.gallery-item.active .gallery-img-side {
    width: 55%;
    border-radius: var(--radius-img);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, 
                border-radius 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item.active .gallery-img-side::before {
    opacity: 0;
    border-radius: var(--radius-img);
}

/* CONTENT SIDE */
.gallery-content-side {
    width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: normal;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    color: #000;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.gallery-item.active .gallery-content-side {
    width: 45%;
    opacity: 1;
    padding-left: 1.875rem;
    pointer-events: auto;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, 
                opacity 0.5s ease 0.5s,
                padding-left 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

/* Make gallery description pushed to bottom (along with arrow) */
.gallery-content-side .gallery-desc {
    margin-top: auto;
}

/* OVERLAY SMALL TITLE */
.gallery-overlay-small {
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.4s ease 0.9s;
}
.gallery-item.active .gallery-overlay-small {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease 0.3s;
}

.gallery-title {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 3rem;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #000;
}
.gallery-overlay-small .gallery-title {
    font-size: 2rem;
    color: #fff;
}
/* GALLERY BUTTON */
.gallery-btn-circle {
    width: 9rem;
    height: 9rem;
    background-color: #EFD08E;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.2;
    color: #000;
    text-decoration: none;
    position: absolute;
    top: 50%;
    /* Left is handled by JS */
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: left 1s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, transform 0.3s ease;
    padding: 1rem;
    pointer-events: auto;
}
.gallery-btn-circle:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* FOOTER */
.site-footer {
    background: #F3F3F3;
    overflow: hidden;
}
.footer-label {
    font-size: 0.75rem;
    color: #9CA3AF;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.footer-nav-link {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 2.5rem;
    line-height: 0.9;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-bottom: 0.5rem;
}
.footer-nav-link:hover {
    opacity: 0.6;
    color: #000;
}

.footer-bio {
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
}

.footer-social-link {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: lowercase;
    transition: opacity 0.3s ease;
}
.footer-social-link:hover {
    text-decoration: none;
    color: #000;
    opacity: 0.7;
}

.footer-big-name {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 13.5rem;
    line-height: 0.81;
    white-space: nowrap;
    margin-bottom: -1.85vw;
    color: #000;
    pointer-events: none;
    transform: translateX(-0.5%); /* Slight optical adjustment */
}

/* POST DETAIL PAGE */
.post-detail-back-btn {
    position: sticky;
    top: 11rem;
}
.post-detail-title {
    font-size: 3rem;
    line-height: 0.9375;
    font-family: "RightGrotesk", system-ui, sans-serif;
}
.post-detail-excerpt {
    font-size: 1.25rem;
}
.post-content p {
    margin-bottom: 1.5rem;
}
.post-content a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}
.post-content a:hover {
    opacity: 0.7;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-img);
}
.post-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.post-content ul li {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-img);
    gap: 1rem;
    text-align: start !important;
}
.concert-date-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.concert-date-info .concert-date {
    color: #000;
    font-family: "RightGrotesk", system-ui, sans-serif;
    font-size: 1.5rem;
    line-height: normal;
}
.concert-date-info .concert-location {
    font-family: var(--font-base);
    color: #000;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
}
.concert-date-info .concert-time {
    color: #000;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
}
.post-image-wrapper {
  position: relative;
  aspect-ratio: 2 / 1;
}

/* CONCERTS PAGE */
.concert-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.concert-row-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.concert-row {
    background: #fff;
    border-radius: var(--radius-img);
    padding: 1.875rem 3.75rem 1.875rem 1.875rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concert-row-link:not(.concert-row-no-link):hover .concert-row {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
}

.concert-row-no-link {
    cursor: default;
}

.concert-row-past .concert-row {
    background: rgba(255, 255, 255, 0.5);
}

.concert-row-date {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.3125rem;
    min-width: 8.25rem;
}

.concert-row-day {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 6rem;
    line-height: 0.84375;
}

.concert-row-month {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 2rem;
    line-height: 1.03125;
}

.concert-row-year {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 2rem;
    line-height: 1.03125;
}

.concert-row-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.concert-row-title {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 3rem;
    line-height: 0.9375;
}

.concert-row-location {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    text-align: start;  
    width: 14rem;
}

.concert-row-city {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 3rem;
    line-height: 0.8958;
}

.concert-row-venue {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07rem;
    padding-top: 0.75rem;
}

.concert-row-time {
    font-size: 0.875rem;
}

.concert-row-button {
    min-width: fit-content;
}

.concert-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/*
  DISCOGRAPHY
*/

.discography-image-wrapper {
    position: sticky;
    top: 12rem;
}

.discography-active-image {
    position: relative;
    border-radius: var(--radius-img);
    overflow: hidden;
    background: #f5f5f5;
    min-height: 20rem;
}

.discography-active-image.is-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.discography-main-img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
    display: block;
}

.discography-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discography-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: var(--color-text);
}

.discography-card:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.discography-card.active {
    background: #000;
    color: #fff;
}

.discography-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.discography-card-title {
    font-size: 3rem;
    line-height: 0.9375;
}

.discography-card-year {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07rem;
}

.discography-card-arrow svg {
    transition: transform 0.3s ease;
}

.discography-card:hover .discography-card-arrow svg {
    transform: translateX(0.5rem);
    fill: #fff;
}

.load-more-btn {
    width: 100%;
}

/*
  DISCOGRAPHY DETAIL
*/
.discography-detail-section {
    padding: 4rem 0;
}

.discography-detail-back-btn {
    position: sticky;
    top: 11rem;
}

.discography-detail-title {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 3rem;
    line-height: 0.9375;
    margin-bottom: 0;
}

.discography-detail-year {
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
}

.discography-detail-image {
    border-radius: var(--radius-img);
    overflow: hidden;
}

.discography-detail-description {
    font-size: 1rem;
    line-height: normal
}

.tracklist-title {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 2.5rem;
    line-height: 0.825;
}

.cd-section {
    margin-bottom: 2rem;
}

.cd-title {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.tracklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1.5rem;
}

.track-number {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    min-width: 3rem;
    flex-shrink: 0;
}

.track-name {
    flex: 1;
    font-family: "RightGrotesk", system-ui, sans-serif;
    font-size: 1.5rem;
    text-align: left;
}

.track-platforms {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.platform-link:hover {
    color: #666;
    transform: scale(1.1);
}

.platform-link svg {
    width: 1.5rem;
    height: auto;
}

/* GALLERY LIST PAGE */
.gallery-card {
    display: block;
    border-radius: var(--radius-img);
    overflow: hidden;
    position: relative;
}

.gallery-card-img {
    aspect-ratio: 1.1 / 1;
    position: relative;
    overflow: hidden;
}

.gallery-card-img img {
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-img img {
    transform: scale(1.05);
}

.gallery-card-overlay {
    padding: 2rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.70);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 0;
}

.gallery-card-title {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 2rem;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1rem;
}

.gallery-card-arrow svg {
    width: 1.75rem;
    height: auto;
    transition: transform 0.3s ease;
}

/* GALLERY DETAIL */
.btn-back {
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-back:hover {
    color: #666;
}
.gallery-detail-title {
    font-family: 'RightGrotesk', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
}

/* MASONRY GRID */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 0.3125rem;
    gap: 1.875rem;
    grid-auto-flow: dense;
}
.masonry-item {
    overflow: hidden;
    border-radius: var(--radius-img);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.masonry-item:hover {
    transform: scale(1.02);
}
.masonry-item picture,
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.masonry-img {
    border-radius: var(--radius-img);
}

/* Gallery pattern - repeating every 9 photos with explicit positioning */
/* Row 1: 1 square left (3/6 = 50%) + 2 horizontal right (3/6 = 50% stacked) */
.masonry-item:nth-child(9n+1) {
    grid-column: 1 / span 3;
    grid-row: auto / span 20;
}
.masonry-item:nth-child(9n+2) {
    grid-column: 4 / span 3;
    grid-row: auto / span 10;
}
.masonry-item:nth-child(9n+3) {
    grid-column: 4 / span 3;
    grid-row: auto / span 10;
}

/* Row 2: 4 photos - 2 small stacked (1/3) + 2 tall (1/3 each) */
.masonry-item:nth-child(9n+4) {
    grid-column: 1 / span 2;
    grid-row: auto / span 10;
}
.masonry-item:nth-child(9n+5) {
    grid-column: 1 / span 2;
    grid-row: auto / span 10;
}
.masonry-item:nth-child(9n+6) {
    grid-column: 3 / span 2;
    grid-row: auto / span 20;
}
.masonry-item:nth-child(9n+7) {
    grid-column: 5 / span 2;
    grid-row: auto / span 20;
}

/* Row 3: 2 large photos same as first */
.masonry-item:nth-child(9n+8) {
    grid-column: 1 / span 3;
    grid-row: auto / span 20;
}
.masonry-item:nth-child(9n+9) {
    grid-column: 4 / span 3;
    grid-row: auto / span 20;
}
/* BIO PAGE */
.bio-image {
    border-radius: var(--radius-img);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: sticky;
    top: 11rem;
}
.bio-title {
    font-family: "RightGrotesk", system-ui, sans-serif;
    font-size: 3rem;
    line-height: 0.9375;
    margin-bottom: 1.875rem;
}
.bio-text {
    font-size: 1rem;
    line-height: normal;
}
.bio-text p.bio-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
}
.bio-text p {
    margin-bottom: 1.25rem;
}
.bio-text p:last-child {
    margin-bottom: 0;
}
/* PARTNERS PAGE */
.mb-6 {
    margin-bottom: 3rem;
}
.partner-card {
    background: #fff;
    border-radius: var(--radius-img);
    padding: 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    position: relative;
    max-height: 20rem;
}
.partner-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.partner-card-small {
    padding: 1.5rem;
}
.partner-link {
    display: block;
    width: 100%;
    height: 100%;
}
.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.partner-card:hover .partner-logo {
    filter: grayscale(0%);
}

/* 
  CONTACT SECTION
*/
.contact-section {
    padding-bottom: 6.25rem;
}
.contact-subtitle {
    font-size: 3rem;
    line-height: 0.9375;
    font-family: 'RightGrotesk', system-ui, sans-serif;
}
.contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.contact-block-label {
    color: #C8C8C8;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.035rem;
    text-transform: uppercase;
    margin-bottom: 0;
}
.contact-block-title {
    color: #000;
    font-family: "RightGrotesk", system-ui, sans-serif;
    font-size: 1.75rem;
    line-height: normal;
    margin-bottom: 0;
}
.contact-block-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-info-person,
.contact-info-place,
.contact-info-phone,
.contact-info-email {
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: normal;
    font-weight: 800;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
}
.contact-info-phone a,
.contact-info-email a {
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.contact-info-phone a:hover,
.contact-info-email a:hover {
    opacity: 0.7;
}

/* VIDEO PAGE */
.all-videos-card {
    padding: 1.5rem;
    text-decoration: none;
    color: var(--color-text);
    background-color: #fff;
    display: block;
    border-radius: 1.5rem;
    transition: all 0.3s ease-in-out;
}
.all-videos-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
}
.all-videos-card-title {
    margin-bottom: 0.25rem;
}
.all-videos-card-label {
    font-size: 0.875rem;
    color: #000;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
}