/* ============================================================
   JAH PRAYZAH — SHARED STYLESHEET
   css/style.css
   ============================================================ */


/* ============================================================
   0. LOADING OVERLAY
   ============================================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.loader__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.loader__title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #C9A962;
  letter-spacing: 0.15em;
  margin: 0;
}

.loader__divider {
  width: 40px;
  height: 2px;
  background: #C9A962;
  margin: 24px 0 20px;
}

.loader__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(201, 169, 98, 0.6);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.loader__bar-track {
  width: 240px;
  height: 1px;
  background: rgba(201, 169, 98, 0.2);
  margin-bottom: 16px;
  overflow: hidden;
}

.loader__bar-fill {
  width: 0%;
  height: 100%;
  background: #C9A962;
  animation: loader-fill 1.8s ease-in-out forwards;
}

@keyframes loader-fill {
  0% { width: 0%; }
  100% { width: 100%; }
}

.loader__text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(201, 169, 98, 0.45);
  letter-spacing: 0.3em;
}

@media (max-width: 767px) {
  .loader__title {
    font-size: 32px;
    text-align: center;
  }
  .loader__content {
    text-align: center;
  }
}

/* ============================================================
   1. CSS RESET
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--jp-bg);
  color: var(--jp-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
}

input,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p {
  margin: 0;
  padding: 0;
}


/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */

:root {
  /* Background colours */
  --jp-bg:        #0A0A0A;
  --jp-surface:   #141414;
  --jp-surface-2: #1C1C1C;

  /* Brand gold */
  --jp-gold:     #C9A962;
  --jp-gold-dim: #8B7441;

  /* Overlay */
  --jp-overlay: rgba(10, 10, 10, 0.6);

  /* White scale */
  --jp-white:    #FFFFFF;
  --jp-white-10: rgba(255, 255, 255, 0.10);
  --jp-white-20: rgba(255, 255, 255, 0.20);
  --jp-white-50: rgba(255, 255, 255, 0.50);
  --jp-white-80: rgba(255, 255, 255, 0.80);

  /* Border */
  --jp-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --content-padding: 60px;
  --section-padding: 100px;
  --max-width:       1320px;
}


/* ============================================================
   3. TYPOGRAPHY CLASSES
   ============================================================ */

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--jp-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--jp-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--jp-white);
}

.body-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--jp-white-80);
}

.subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--jp-white-50);
}


/* ============================================================
   4. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc((100% - var(--max-width)) / 2 + var(--content-padding));
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, border-bottom 0.3s ease;
}

.nav.scrolled {
  background: var(--jp-surface);
  border-bottom: 1px solid var(--jp-border);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--jp-gold);
  letter-spacing: 1px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav__logo:hover {
  opacity: 0.85;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jp-white-80);
  transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--jp-gold);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--jp-gold);
  color: var(--jp-bg);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--jp-gold-dim);
}

/* Hamburger — hidden on desktop, visible on mobile */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--jp-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Open state transforms */
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--jp-surface);
  border-left: 1px solid var(--jp-border);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 32px;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer .nav__link {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--jp-border);
}

.nav__drawer .nav__cta {
  display: block;
  text-align: center;
  margin-top: 24px;
}

.nav__drawer-overlay {
  position: fixed;
  inset: 0;
  background: var(--jp-overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav__drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}


/* ============================================================
   5. HERO SECTIONS
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--jp-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--content-padding);
}

/* Height variants */
.hero--image {
  height: 900px;
}

.hero--medium {
  height: 600px;
}

.hero--short {
  height: 500px;
}

.hero--gradient {
  height: 400px;
  background: linear-gradient(180deg, var(--jp-surface-2) 0%, var(--jp-bg) 100%);
}

/* Hero label pill */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--jp-white-10);
  border: 1px solid var(--jp-white-20);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--jp-gold);
  margin-bottom: 24px;
  width: fit-content;
}

/* Hero title */
.hero__title {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--jp-white);
  margin-bottom: 32px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--jp-white-80);
  max-width: 560px;
  margin-bottom: 40px;
}

/* Scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jp-white-50);
  animation: scrollHintBounce 2s ease-in-out infinite;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--jp-white-50) 0%, transparent 100%);
}

@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--jp-gold);
  color: var(--jp-bg);
  border: 2px solid var(--jp-gold);
}

.btn--primary:hover {
  background: var(--jp-gold-dim);
  border-color: var(--jp-gold-dim);
}

.btn--outline {
  background: transparent;
  color: var(--jp-white-80);
  border: 2px solid var(--jp-white-50);
}

.btn--outline:hover {
  border-color: var(--jp-white);
  color: var(--jp-white);
}

.btn--small {
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 1.5px;
}

.btn--gold-outline {
  background: transparent;
  color: var(--jp-gold);
  border: 2px solid var(--jp-gold);
}

.btn--gold-outline:hover {
  background: var(--jp-gold);
  color: var(--jp-bg);
}

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jp-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.link-gold:hover {
  color: var(--jp-white);
  gap: 12px;
}


/* ============================================================
   7. SECTIONS
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
  box-sizing: border-box;
  overflow: hidden;
}

.section--full {
  max-width: none;
  width: 100%;
}

.section__padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}


/* ============================================================
   8. FILTER TABS
   ============================================================ */

.filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--jp-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jp-white-50);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  border-color: var(--jp-white-20);
  color: var(--jp-white-80);
}

.filter-tab.active {
  background: var(--jp-gold);
  border-color: var(--jp-gold);
  color: var(--jp-bg);
}


/* ============================================================
   9. FOOTER
   ============================================================ */

.footer {
  width: 100%;
  background: var(--jp-bg);
}

.footer__top {
  position: relative;
  height: 400px;
  background: var(--jp-surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 180px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: -4px;
  z-index: 0;
}

.footer__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--jp-gold);
  letter-spacing: 1px;
}

.footer__divider {
  width: 60px;
  height: 2px;
  background: var(--jp-gold);
  border: none;
  margin: 0;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--jp-white-50);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--jp-border);
  color: var(--jp-white-50);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  border-color: var(--jp-gold);
  color: var(--jp-gold);
  background: var(--jp-white-10);
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 24px var(--content-padding);
  border-top: 1px solid var(--jp-border);
  border-bottom: 1px solid var(--jp-border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jp-white-50);
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: var(--jp-gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--jp-white-50);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--jp-white-50);
}

.footer__legal a {
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--jp-white-80);
}

.footer__dev {
  text-align: center;
  padding: 16px 0 24px;
  font-size: 11px;
  color: var(--jp-white-50);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--jp-white-10);
  margin-top: 24px;
}

.footer__dev a {
  color: var(--jp-gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__dev a:hover {
  opacity: 0.8;
}


/* ============================================================
   10. FORM FIELDS
   ============================================================ */

.form-field {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--jp-white-10);
  border: 1px solid var(--jp-white-20);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--jp-white);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-field::placeholder {
  color: var(--jp-white-50);
}

.form-field:focus {
  outline: none;
  border-color: var(--jp-gold);
  background: rgba(201, 169, 98, 0.05);
}

textarea.form-field {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-field {
  flex: 1;
}


/* ============================================================
   11. CARDS
   ============================================================ */

/* Video Card */
.video-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.video-card__thumb {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--jp-surface);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--jp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.video-card__play svg {
  width: 20px;
  height: 20px;
  fill: var(--jp-bg);
  margin-left: 2px;
}

.video-card:hover .video-card__play {
  opacity: 1;
}

.video-card__meta {
  padding: 16px 0 0;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--jp-surface);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card__meta {
  padding: 16px 0 0;
}

/* News Card */
.news-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--jp-surface);
  border-radius: 4px;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.news-card__meta {
  padding: 16px 0 0;
}

/* Member Card */
.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.member-card__photo {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--jp-surface);
  border-radius: 4px;
  margin-bottom: 16px;
}

.member-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Info Card */
.info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  background: var(--jp-surface);
  border: 1px solid var(--jp-border);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.info-card:hover {
  border-color: var(--jp-gold-dim);
}

.info-card .label {
  margin-bottom: 4px;
}


/* ============================================================
   12. GRID LAYOUTS
   ============================================================ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-width: 0;
}

.grid-3 > * {
  min-width: 0;
}

.grid-4 > * {
  min-width: 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


/* ============================================================
   13. UTILITIES
   ============================================================ */

.text-gold     { color: var(--jp-gold); }
.text-white    { color: var(--jp-white); }
.text-white-50 { color: var(--jp-white-50); }
.text-white-80 { color: var(--jp-white-80); }

.bg-surface    { background-color: var(--jp-surface); }
.bg-bg         { background-color: var(--jp-bg); }


/* --- Tickets Page --- */
.ticket-card {
  border: 1px solid var(--jp-white-10);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.ticket-card:hover {
  border-color: var(--jp-white-20);
}

.ticket-card.selected {
  border-color: var(--jp-gold);
  border-left: 3px solid var(--jp-gold);
}

.ticket-card__price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--jp-gold);
  text-align: right;
  flex-shrink: 0;
}

.ticket-card__per {
  font-size: 12px;
  color: var(--jp-white-50);
  text-align: right;
}

.ticket-card__features {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--jp-white-50);
}

.ticket-card__features span::before {
  content: "✓ ";
  color: var(--jp-gold);
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-left: 12px;
}

.badge--gold {
  background: var(--jp-gold);
  color: var(--jp-bg);
}

.badge--outline {
  border: 1px solid var(--jp-white-20);
  color: var(--jp-white-50);
}

.ticket-sidebar {
  position: sticky;
  top: 100px;
  background: var(--jp-surface);
  border: 1px solid var(--jp-white-10);
  border-radius: 4px;
  padding: 32px;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--jp-white-20);
  color: var(--jp-white);
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s;
}

.qty-btn:hover {
  border-color: var(--jp-gold);
}

.qty-value {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--jp-white-20);
  border-bottom: 1px solid var(--jp-white-20);
  font-size: 16px;
  font-weight: 600;
  color: var(--jp-white);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--jp-white-50);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  border-top: 1px solid var(--jp-white-10);
  margin-top: 8px;
}

.summary-total span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--jp-white);
}

.summary-total span:last-child {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--jp-gold);
}


/* --- Product Page --- */
.product-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.product-info {
  width: 480px;
  flex-shrink: 0;
}

.size-btn {
  width: 48px;
  height: 40px;
  border: 1px solid var(--jp-white-20);
  background: transparent;
  color: var(--jp-white-50);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.size-btn:hover {
  border-color: var(--jp-white-50);
  color: var(--jp-white);
}

.size-btn.active {
  border-color: var(--jp-gold);
  color: var(--jp-white);
  background: var(--jp-white-10);
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
}

.color-swatch.active {
  border-color: var(--jp-gold);
}

.color-swatch:hover {
  border-color: var(--jp-white-50);
}

.spec-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--jp-border);
  font-size: 14px;
}

.spec-label {
  width: 120px;
  flex-shrink: 0;
  color: var(--jp-white-50);
}

.spec-value {
  color: var(--jp-white);
}

.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
}

.product-thumb.active {
  border-color: var(--jp-gold);
}

.product-thumb:hover {
  border-color: var(--jp-white-50);
}


/* ============================================================
   14. RESPONSIVE — TABLET / MOBILE
   ============================================================ */

/* Bootstrap-style container stepping */
@media (max-width: 1399px) {
  :root {
    --max-width: 1140px;
  }
}

@media (max-width: 1199px) {
  :root {
    --max-width: 960px;
    --content-padding: 40px;
  }

  .hero__title { font-size: 80px; }
  .page-title { font-size: 56px; }
  .section-title { font-size: 40px; }
}

@media (max-width: 991px) {
  :root {
    --max-width: 720px;
    --section-padding: 80px;
  }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  :root {
    --max-width: 540px;
    --content-padding: 24px;
    --section-padding: 60px;
  }

  /* Nav */
  .nav { padding: 0 var(--content-padding) !important; }
  .nav__links { display: none; }
  .nav__cta:not(.nav__drawer .nav__cta) { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer { display: flex; }
  .nav__drawer-overlay { display: block; }

  /* Hero */
  .hero--image { height: 100vh; }
  .hero--medium { height: 500px; }
  .hero__title { font-size: 48px; letter-spacing: -1px; }
  .hero__content { padding-bottom: 80px; }
  .page-title { font-size: 40px; }
  .section-title { font-size: 32px; }
  .subtitle { font-size: 16px; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Release layout */
  .release-layout { flex-direction: column !important; gap: 40px !important; }
  .album-art-wrap { width: 100% !important; height: auto !important; aspect-ratio: 1; }

  /* Bio layout */
  .bio-layout { flex-direction: column !important; gap: 40px !important; }
  .bio-images { width: 100% !important; }

  /* Stats */
  .stats-row { flex-wrap: wrap !important; gap: 32px !important; justify-content: center !important; }
  .stats-row > div { width: 45%; }
  .anim-counter { font-size: 40px !important; }

  /* Band grid */
  .band-grid { flex-wrap: wrap !important; }
  .band-grid .member-card { flex: 0 0 calc(50% - 12px) !important; }

  /* Tour rows */
  .anim-tour-row { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }
  .anim-tour-row > div:nth-child(2) { padding: 0 !important; }
  .anim-tour-row .btn { width: 100%; }

  /* VIP layout */
  .vip-layout { flex-direction: column !important; }
  .vip-image { width: 100% !important; height: 260px !important; }

  /* Featured article */
  .featured-article-layout { flex-direction: column !important; }
  .featured-article-image { width: 100% !important; height: 260px !important; }

  /* Contact layout */
  .contact-layout { flex-direction: column !important; gap: 48px !important; }
  .contact-layout > * { width: 100% !important; flex: none !important; min-width: 0 !important; }
  .contact-info { width: 100% !important; }

  /* Form */
  .form-row { flex-direction: column; }

  /* CTA form */
  .cta-form-row { flex-direction: column !important; width: 100%; }
  .cta-form-row .form-field { width: 100% !important; border-right: 1px solid var(--jp-white-20) !important; }
  .cta-form-row .btn { width: 100%; }

  /* Filters */
  .filters { flex-wrap: wrap; }

  /* Footer */
  .footer__watermark { font-size: 72px; letter-spacing: 4px; }
  .footer__logo { font-size: 22px; }
  .footer__nav { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { justify-content: center; }

  /* Scroll hint hidden on mobile */
  .scroll-hint { display: none; }

  /* Video thumbs */
  .video-card__thumb { height: 200px; }
  .video-card__play { opacity: 1; }

  /* Tickets layout */
  .tickets-layout { flex-direction: column !important; }
  .ticket-sidebar { position: static !important; width: 100% !important; }
  .ticket-card { flex-direction: column !important; gap: 16px !important; }
  .ticket-card__price { text-align: left; }
  .ticket-card__features { flex-wrap: wrap; gap: 12px; }

  /* Product layout */
  .product-layout { flex-direction: column !important; }
  .product-info { width: 100% !important; }
  .details-layout { flex-direction: column !important; }
  .artist-quote { width: 100% !important; }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 42px;
  }

  .page-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero--image {
    height: 600px;
  }

  .hero--medium {
    height: 480px;
  }

  .filters {
    gap: 10px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 11px;
  }
}
