:root {
  --black: #050506;
  --charcoal: #111216;
  --charcoal-2: #181a20;
  --gold: #d8b34b;
  --gold-soft: #f4d884;
  --blue: #09a9ff;
  --white: #f6f7fb;
  --muted: #a8abb5;
  --line: rgba(255,255,255,.12);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.light-streak {
  position: fixed;
  width: 40vw;
  height: 130vh;
  top: -15vh;
  z-index: -1;
  opacity: .13;
  filter: blur(45px);
  background: linear-gradient(180deg, transparent, var(--blue), transparent);
  transform: rotate(24deg);
  animation: drift 10s ease-in-out infinite alternate;
}
.streak-one { left: 8vw; }
.streak-two { right: -8vw; animation-delay: -4s; opacity: .08; }
@keyframes drift {
  to { transform: translateX(12vw) rotate(18deg); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,0,0));
  transition: background .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(5,5,6,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid rgba(216,179,75,.7);
  color: var(--gold-soft);
  font: 800 15px Montserrat, sans-serif;
  letter-spacing: .08em;
  clip-path: polygon(18% 0, 82% 0, 100% 18%, 100% 82%, 82% 100%, 18% 100%, 0 82%, 0 18%);
  box-shadow: inset 0 0 20px rgba(9,169,255,.08);
}
.brand-copy { display: grid; }
.brand-copy strong { font: 700 14px Montserrat, sans-serif; letter-spacing: .04em; }
.brand-copy small { color: var(--muted); font-size: 11px; margin-top: 3px; }

.site-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.site-nav a { color: rgba(255,255,255,.8); transition: color .2s; }
.site-nav a:hover { color: var(--gold-soft); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(216,179,75,.58);
  border-radius: 999px;
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 150px clamp(22px, 7vw, 110px) 13vh;
  overflow: hidden;
}
.hero-video, .hero-overlay, .hero-vignette { position: absolute; inset: 0; }
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.16) 74%),
    linear-gradient(0deg, rgba(5,5,6,.97) 0%, rgba(5,5,6,.15) 48%);
}
.hero-vignette { box-shadow: inset 0 0 190px 30px rgba(0,0,0,.65); }

.hero-content { position: relative; z-index: 2; width: min(760px, 100%); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Montserrat, sans-serif; margin-top: 0; }
.hero h1 {
  margin-bottom: 10px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}
.hero h2 {
  margin-bottom: 22px;
  font-size: clamp(20px, 2.2vw, 32px);
  color: rgba(255,255,255,.9);
}
.hero-copy {
  max-width: 630px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 5px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 38px rgba(216,179,75,.16);
}
.button-secondary {
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.button-secondary:hover { border-color: var(--blue); box-shadow: 0 0 30px rgba(9,169,255,.14); }

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 5vw, 72px);
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-cue span { display: block; width: 54px; height: 1px; background: var(--gold); }

.section { max-width: var(--max); margin: 0 auto; padding: 120px clamp(22px, 5vw, 70px); }
.section-heading { max-width: 780px; margin-bottom: 54px; }
.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 65px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(34px, 6vw, 75px);
    align-items: start;
}

.portrait-card {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    min-height: 760px;
    border: none;
    border-radius: 18px;
    transform: translateY(-20px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.45),
        0 0 50px rgba(212,175,55,.08);
}
.portrait-card img {
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    filter: saturate(.82) contrast(1.04);
}
.portrait-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(212,175,55,.22),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.05),
            rgba(0,0,0,.55),
            rgba(0,0,0,.90)
        );
    pointer-events:none;
}
.portrait-tag{
    position:absolute;
    z-index:2;

    top:28px;
    left:28px;
    right:auto;
    bottom:auto;

    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;

    padding:18px 22px;

    background:rgba(0,0,0,.42);
    backdrop-filter:blur(12px);

    border:1px solid rgba(212,175,55,.25);
    border-radius:16px;
}
.portrait-tag strong{
    color:var(--gold-soft);
    font:800 42px Montserrat,sans-serif;
    line-height:1;
}
.portrait-tag span{
    max-width:none;
    text-align:left;
    color:rgba(255,255,255,.82);
    font-size:13px;
    line-height:1.45;
}
.about-copy .lead { color: var(--white); font-size: clamp(22px, 2.4vw, 34px); line-height: 1.45; }
.about-copy > p:not(.lead) { color: var(--muted); line-height: 1.8; font-size: 17px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 38px; background: var(--line); border: 1px solid var(--line); }
.stats div { display: grid; gap: 10px; padding: 22px; background: var(--charcoal); }
.stats strong { color: var(--gold-soft); font: 800 22px Montserrat, sans-serif; }
.stats span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.experience-section { max-width: 100%; background: #090a0d; }
.experience-section > * { max-width: calc(var(--max) - 140px); margin-left: auto; margin-right: auto; }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(0,0,0,.95), rgba(0,0,0,.18)),
    radial-gradient(circle at 75% 20%, rgba(9,169,255,.22), transparent 33%),
    linear-gradient(145deg, #22242a, #0b0c0f);
  transition: transform .28s, border-color .28s;
}
.feature-card:hover { transform: translateY(-8px) scale(1.01); border-color: rgba(216,179,75,.55); }
.feature-card::before {
  content: "";
  position: absolute; width: 180%; height: 1px; top: 35%; left: -40%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: rotate(-18deg);
  opacity: .45;
}
.feature-danforth { background: linear-gradient(0deg, rgba(0,0,0,.95), rgba(0,0,0,.2)), radial-gradient(circle at 25% 10%, rgba(216,179,75,.2), transparent 35%), linear-gradient(145deg, #22242a, #0b0c0f); }
.feature-cbc { background: linear-gradient(0deg, rgba(0,0,0,.95), rgba(0,0,0,.2)), radial-gradient(circle at 70% 12%, rgba(9,169,255,.24), transparent 32%), linear-gradient(145deg, #22242a, #0b0c0f); }
.card-number { position: absolute; top: 24px; right: 24px; color: rgba(255,255,255,.35); font: 700 12px Montserrat, sans-serif; }
.feature-card p { margin: 0 0 8px; color: var(--gold-soft); font-size: 11px; letter-spacing: .17em; text-transform: uppercase; }
.feature-card h3 { margin: 0 0 8px; font-size: clamp(25px, 3vw, 39px); }
.feature-card div > span { color: var(--muted); font-size: 13px; }

.portfolio-section { max-width: 100%; padding-left: 0; padding-right: 0; }
.portfolio-section .section-heading,
.portfolio-section .edit-note { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: clamp(22px, 5vw, 70px); padding-right: clamp(22px, 5vw, 70px); }
.portfolio-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 32vw);
  gap: 16px;
  overflow-x: auto;
  padding: 0 max(22px, calc((100vw - var(--max))/2 + 70px)) 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.portfolio-card {
  position: relative;
  min-height: 255px;
  padding: 24px;
  color: var(--white);
  text-align: left;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.04)),
    radial-gradient(circle at 75% 20%, rgba(9,169,255,.2), transparent 38%),
    linear-gradient(135deg, #24272d, #0e0f13);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform .25s, border-color .25s;
}
.portfolio-card:nth-child(even) {
  background:
    linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.04)),
    radial-gradient(circle at 30% 20%, rgba(216,179,75,.18), transparent 35%),
    linear-gradient(135deg, #24272d, #0e0f13);
}
.portfolio-card:hover { transform: scale(1.035); z-index: 2; border-color: var(--gold); }
.portfolio-card div { position: absolute; left: 24px; right: 24px; bottom: 24px; }
.portfolio-card p { margin: 0 0 7px; color: var(--gold-soft); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.portfolio-card h3 { margin: 0 0 6px; font-size: 25px; }
.portfolio-card div span { color: var(--muted); font-size: 12px; }
.portfolio-index { position: absolute; top: 20px; right: 20px; font: 700 11px Montserrat, sans-serif; color: rgba(255,255,255,.35); }
.edit-note { margin-top: 22px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.skills-section { border-top: 1px solid var(--line); }
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.skill-card {
  min-height: 155px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
}
.skill-card::before { content: ""; width: 42px; height: 2px; margin-bottom: 18px; background: linear-gradient(90deg, var(--gold), var(--blue)); }
.skill-card strong { font: 700 20px Montserrat, sans-serif; }
.skill-card span { color: var(--muted); font-size: 13px; }

.contact-section {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 100px 24px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(5,5,6,.82), rgba(5,5,6,.96)),
    url("assets/kheam-headshot.jpg") center 35%/cover;
}
.contact-glow {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(9,169,255,.17);
  filter: blur(100px);
}
.contact-content { position: relative; max-width: 820px; }
.contact-content h2 { margin-bottom: 22px; font-size: clamp(38px, 6vw, 76px); line-height: 1.02; }
.contact-content > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 32px; }

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px clamp(22px, 5vw, 70px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  border-top: 1px solid var(--line);
}

.portfolio-modal {
  width: min(620px, calc(100% - 32px));
  padding: 48px;
  color: var(--white);
  border: 1px solid rgba(216,179,75,.45);
  border-radius: 8px;
  background: rgba(12,13,17,.96);
  box-shadow: 0 30px 90px rgba(0,0,0,.75);
}
.portfolio-modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.portfolio-modal h2 { font-size: clamp(32px, 6vw, 54px); margin-bottom: 18px; }
.modal-copy { color: var(--muted); line-height: 1.7; }
.modal-help { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--gold-soft); font-size: 12px; }
.modal-close { position: absolute; top: 14px; right: 18px; color: var(--white); border: 0; background: transparent; font-size: 30px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.artists-section {
  border-top: 1px solid var(--line);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.artist-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.12)),
    radial-gradient(circle at 75% 20%, rgba(216,179,75,.18), transparent 35%),
    linear-gradient(145deg, #22242a, #0b0c0f);
  transition: transform .25s, border-color .25s;
}

.artist-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.artist-card h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.artist-card span {
  color: var(--muted);
  font-size: 13px;
}.console-section {
  border-top: 1px solid var(--line);
}

.console-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.console-card:nth-child(1),
.console-card:nth-child(2),
.console-card:nth-child(3) {
    grid-column: span 2;
}

.console-card:nth-child(4),
.console-card:nth-child(5) {
    grid-column: span 3;
}

.console-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.08)),
    radial-gradient(circle at 70% 20%, rgba(9,169,255,.2), transparent 35%),
    linear-gradient(145deg, #22242a, #0b0c0f);
  transition: transform .25s, border-color .25s;
}

.console-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45),
              0 0 24px rgba(216, 179, 75, 0.18);
}

.console-card h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.console-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}.gallery-section {
  border-top: 1px solid var(--line);
}

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

.gallery-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.08)),
    radial-gradient(circle at 70% 20%, rgba(216,179,75,.18), transparent 35%),
    linear-gradient(145deg, #22242a, #0b0c0f);
  transition: transform .25s, border-color .25s;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.gallery-card h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.gallery-card span {
  color: var(--muted);
  font-size: 13px;
}.artist-card:nth-child(1) {
    background-image:
        linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.08)),
        url("assets/sean-paul.jpg");
    background-size: cover;
    background-position: center 35%;
}

.artist-card:nth-child(2) {
    background-image:
        linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.08)),
        url("assets/chronixx.jpg");
    background-size: cover;
    background-position: center 32%;
}

.artist-card:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.08)),
    url("assets/asap-ferg.jpg") center/cover;
}.gallery-photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 12px;
    margin-bottom: 16px;
}

.gallery-photo h4 {
    margin-bottom: 8px;
}

.gallery-photo p {
    color: var(--muted);
}.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: #000;
}

.gallery-modal.open {
  display: flex;
}

.gallery-modal img,
.gallery-modal video {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
}

.gallery-close,
.gallery-arrow {
  position: absolute;
  color: white;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.gallery-close {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 9999;

    font-size: 36px;
}

.gallery-arrow {
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  padding: 12px 16px;
}

.gallery-prev {
  left: 24px;
}

.gallery-next {
  right: 24px;
}
@media (max-width: 900px) {
  .site-nav {
    position: fixed; inset: 82px 16px auto;
    display: none; flex-direction: column; align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(8,8,10,.96);
    backdrop-filter: blur(18px);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px; }
  .menu-button {
    display: block;
    color: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 15px;
    background: rgba(255,255,255,.06);
  }
  .hero { align-items: flex-end; padding-bottom: 110px; }
  .hero-image { background-position: 58% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.18)),
      linear-gradient(0deg, rgba(5,5,6,.98) 5%, rgba(5,5,6,.38) 62%);
  }
  .about-grid { grid-template-columns: 1fr; }
  .portrait-card { max-width: 560px; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-card { min-height: 280px; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .brand-copy { display: none; }
  .hero h1 { font-size: 50px; }
  .hero-copy { font-size: 15px; }
  .hero-video {
    transform: scale(1);
    transform-origin: center center;}
  .scroll-cue { display: none; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .stats { grid-template-columns: 1fr; }
  .portfolio-row { grid-auto-columns: 82vw; }
  .skills-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
.portfolio-row {
  grid-template-columns: 1fr;
}/* ===== SHUBH SUPREME TOUR FEATURE ===== */

.featured-tour-card{
    position: relative;
    overflow: hidden;
    width:100%;
    min-height:450px;
    display:flex;
    align-items:flex-end;
    padding:50px;
    background: none;
}

.featured-tour-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.featured-tour-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.12) 100%
    );
    z-index:1;
}

.featured-tour-card .portfolio-index,
.featured-tour-content {
    position: relative;
    z-index: 2;
}
/* ===== AVID S6L CARD ===== */

.console-card-avid{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25),
            rgba(0,0,0,.85)
        ),
        url("./assets/avid-s6l.jpg");

    background-size: cover;
    background-position: center;
}/* ===== DIGICO QUANTUM CARD ===== */

.console-card-digico{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25),
            rgba(0,0,0,.85)
        ),
        url("./assets/digico-quantum.jpg");

    background-size: cover;
    background-position: center;
}/* ===== YAMAHA CL SERIES CARD ===== */

.console-card-yamaha{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25),
            rgba(0,0,0,.85)
        ),
        url("./assets/yamaha-cl5.jpg");

    background-size: cover;
    background-position: center;
}/* ===== MIDAS HERITAGE HD96 CARD ===== */

.console-card-midas{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25),
            rgba(0,0,0,.85)
        ),
        url("./assets/midas-hd96.jpg");

    background-size: cover;
    background-position: center;
}/* ===== SYSTEMS INTEGRATION CARD ===== */

.console-card-systems{
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25),
            rgba(0,0,0,.85)
        ),
        url("./assets/systems-integration.jpg");

    background-size: cover;
    background-position: center;
}/* ===== PROFESSIONAL AUDIO ECOSYSTEM CARDS ===== */

.skill-card{
    position: relative;
    overflow: hidden;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    border: 1px solid var(--line);
    background-size: cover;
    background-position: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.skill-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 30%,
            rgba(0, 0, 0, 0.82) 75%,
            rgba(0, 0, 0, 0.95) 100%
        ),
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.12),
            rgba(0, 0, 0, 0)
        );
    z-index: 0;
}
.skill-card strong,
.skill-card span{
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.55;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

.skill-card strong{
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,.55);
}

.skill-card:hover{
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow:
        0 18px 40px rgba(0,0,0,.45),
        0 0 24px rgba(216,179,75,.18);
}

.skill-card-axient{
    background-image: url("./assets/shure-axient.jpg");
}

.skill-card-psm{
    background-image: url("./assets/shure-psm1000.jpg");
}

.skill-card-sennheiser{
    background-image: url("./assets/sennheiser-6000.jpg");
}

.skill-card-dante{
    background-image: url("./assets/dante-network.jpg");
}

.skill-card-waves{
    background-image: url("./assets/waves-soundgrid.jpg");
}

.skill-card-smaart{
    background-image: url("./assets/smaart.jpg");
}.skill-card {
    background-size: 100%;
}

.skill-card:hover {
    background-size: 108%;
}/* ===== EXPERIENCE CARD BACKGROUNDS ===== */

.feature-rebel{
    background-image:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.90)
        ),
        url("./assets/rebel-stage.jpg");
    background-size: cover;
    background-position: center;
}

.feature-danforth{
    background-image:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.90)
        ),
        url("./assets/danforth-stage.jpg");
    background-size: cover;
    background-position: center;
}

.feature-cbc{
    background-image:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.90)
        ),
        url("./assets/cbc-studio.jpg");
    background-size: cover;
    background-position: center;
}/* ===== EXPERIENCE CARD POLISH ===== */

.feature-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-size 0.35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.92) 100%
    );
    z-index: 0;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    color: #fff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.75);
}

.feature-card p,
.feature-card span {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 0 24px rgba(216, 179, 75, 0.18);
}/* ===== ABOUT STORY BLOCKS ===== */

.about-block {
    padding: 6px 0;
    position: relative;
}
.about-block:first-child::before{
    content:"";
    display:block;
    width:100%;
    height:1px;
    margin-bottom:28px;
    background:linear-gradient(
        90deg,
        rgba(216,179,75,.65),
        rgba(255,255,255,.08)
    );
}
.about-label {
    margin: 0 0 12px;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-block p:not(.about-label) {
    margin: 0;
}

.about-divider {
    width: 100%;
    height: 1px;
    margin: 28px 0;
    background: linear-gradient(
        90deg,
        rgba(216, 179, 75, 0.65),
        rgba(255, 255, 255, 0.08)
    );
}/* ===== ABOUT STORY TEXT BALANCE ===== */

.about-label {
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: 0.2em;
}

.about-block:not(:first-child) p:not(.about-label) {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
}

.about-divider {
    margin: 32px 0;
}/* ===== ABOUT STORY CONSISTENT TEXT ===== */

.about-block p:not(.about-label) {
    font-size: 21px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.about-block .lead {
    font-size: 21px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}/* ===== ABOUT CAREER STATS ===== */

.career-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100%;
    margin-top: 0;
    background: var(--line);
    border: 1px solid var(--line);
}
.career-stat {
    min-height: 108px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(10, 12, 15, 0.92);
}

.career-stat strong {
    margin-bottom: 8px;
    color: var(--gold-soft);
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    line-height: 1;
}

.career-stat span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.45;
}/* ===== ABOUT MINI HEADINGS ===== */

.about-mini-heading{
    margin: 34px 0 14px;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}/* ===== ABOUT BOTTOM TWO-COLUMN LAYOUT ===== */

.about-bottom-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(34px, 5vw, 66px);
    align-items: start;
    margin-top: 38px;
}

.about-bottom-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.about-bottom-group .stats,
.about-bottom-group .career-stats {
    width: 100%;
    margin-top: 0;
}
@media (max-width: 900px) {
    .about-bottom-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   AUDIO PORTFOLIO
========================================= */

.media-section {
  padding-top: 110px;
  padding-bottom: 110px;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(8, 47, 72, 0.48),
      rgba(4, 10, 16, 0.15) 48%,
      rgba(3, 6, 10, 0.92) 100%
    );
}

.media-section .section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.media-section .section-heading h2 {
  margin-top: 10px;
  margin-bottom: 18px;
}

.media-section .section-heading > p:last-child {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.media-section .audio-category {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin-bottom: 22px;
  padding: 30px 32px;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.media-section .audio-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.media-section .audio-category:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 190, 93, 0.55);

  background:
    linear-gradient(
      135deg,
      rgba(224, 190, 93, 0.075),
      rgba(255, 255, 255, 0.025)
    );
}

.audio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.audio-header h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.25rem;
}

.audio-header span {
  flex-shrink: 0;
  padding: 7px 12px;

  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  border: 1px solid rgba(224, 190, 93, 0.45);
  border-radius: 999px;
}

.media-section .audio-category > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Mobile */

@media (max-width: 700px) {
  .media-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .media-section .audio-category {
    padding: 24px 22px;
  }

  .audio-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
/* =========================================
   AUDIO TRACK GRID
========================================= */

.audio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 24px;
}

.audio-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 14px 16px;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.audio-track-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.audio-track-info strong {
  color: var(--white);
  font-size: 0.92rem;
}

.audio-track-info small {
  color: var(--muted);
  font-size: 0.72rem;
}

.audio-track audio {
  display: block;
  width: 100%;
  height: 34px;
}

/* Mobile */

@media (max-width: 760px) {
  .audio-list {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   EXPANDABLE AUDIO CATEGORIES
========================================= */

.audio-category summary {
  list-style: none;
  cursor: pointer;
}

.audio-category summary::-webkit-details-marker {
  display: none;
}

.audio-category .audio-header::after {
  content: "+";
  flex-shrink: 0;
  margin-left: 8px;

  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;

  transition: transform 0.25s ease;
}

.audio-category[open] .audio-header::after {
  content: "−";
}

.audio-category:not([open]) .audio-list {
  display: none;
}

.audio-category[open] .audio-list {
  animation: audioReveal 0.3s ease;
}

@keyframes audioReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   INDIVIDUAL AUDIO TRACK ACCORDION
========================================= */

.audio-track {
  padding: 0;
  overflow: hidden;
}

.audio-track summary {
  list-style: none;
}

.audio-track summary::-webkit-details-marker {
  display: none;
}

.audio-track-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 14px 16px;
  cursor: pointer;
}

.audio-track-summary:hover {
  background: rgba(224, 190, 93, 0.06);
}

.track-toggle {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;

  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;

  border: 1px solid rgba(224, 190, 93, 0.45);
  border-radius: 50%;
}

.audio-track[open] .track-toggle {
  font-size: 0;
}

.audio-track[open] .track-toggle::after {
  content: "−";
  font-size: 1.1rem;
}

.audio-player-wrap {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-player-wrap audio {
  width: 100%;
  margin-top: 14px;
}

.audio-track[open] .audio-player-wrap {
  animation: trackReveal 0.25s ease;
}

@keyframes trackReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   PREMIUM PLAYLIST PLAYER
========================================= */

.playlist-player {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;

  margin-top: 24px;
  padding: 24px 26px;

  background:
    linear-gradient(
      135deg,
      rgba(224, 190, 93, 0.07),
      rgba(255, 255, 255, 0.025)
    );

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.playlist-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px 18px;
  min-width: 0;
}

.playlist-label {
  grid-column: 1 / -1;

  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.playlist-title {
  grid-column: 1 / 3;

  overflow: hidden;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playlist-counter {
  grid-column: 3;

  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.playlist-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.playlist-controls button {
  display: grid;
  place-items: center;
  flex-shrink: 0;

  width: 42px;
  height: 42px;
  padding: 0;

  color: var(--gold);
  font: inherit;
  font-size: 0.9rem;

  cursor: pointer;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(224, 190, 93, 0.4);
  border-radius: 50%;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.playlist-controls button:hover {
  color: #080808;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.playlist-controls .playlist-play {
  width: 54px;
  height: 54px;

  color: #080808;
  font-size: 1rem;

  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(224, 190, 93, 0.17);
}

.playlist-controls .playlist-play:hover {
  transform: scale(1.05);
}

.playlist-audio {
  display: none;
}

/* Improve the category cards */

.media-section .audio-category {
  max-width: none;
  padding: 0;
}

.media-section .audio-header {
  min-height: 112px;
  margin: 0;
  padding: 26px 30px;
}

.media-section .audio-header > div {
  max-width: 720px;
}

.media-section .audio-header h3 {
  margin-bottom: 9px;
}

.media-section .audio-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.media-section .audio-category .playlist-player {
  margin: 0 30px 30px;
}

.audio-category:not([open]) .playlist-player {
  display: none;
}

.audio-category[open] .playlist-player {
  animation: playlistReveal 0.3s ease;
}

@keyframes playlistReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

/* Mobile */

@media (max-width: 700px) {
  .media-section .audio-header {
    min-height: auto;
    padding: 24px 22px;
  }

  .media-section .audio-category .playlist-player {
    margin: 0 22px 22px;
  }

  .playlist-player {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }

  .playlist-controls {
    justify-content: center;
  }

  .playlist-title {
    font-size: 1rem;
  }
}
/* =========================================
   DIGITAL PLAYBACK RACK
========================================= */

.playlist-player {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;

  margin: 0 30px 30px;
  padding: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    );

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.22);
}

.playlist-display {
  min-width: 0;
}

.playlist-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.status-light {
  width: 8px;
  height: 8px;
  flex-shrink: 0;

  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(224, 190, 93, 0.65);
}

.playlist-label {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.playlist-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}

.playlist-heading > div {
  min-width: 0;
}

.playlist-type {
  display: block;
  margin-bottom: 5px;

  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.playlist-title {
  display: block;

  overflow: hidden;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playlist-counter {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Meter */

.playlist-meter {
  display: flex;
  align-items: flex-end;
  gap: 5px;

  height: 48px;
  margin: 24px 0 20px;
  padding: 8px 10px;

  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.playlist-meter span {
  position: relative;
  z-index: 1;

  flex: 1;
  min-width: 4px;
  height: 12%;

  background:
    linear-gradient(
      to top,
      #23966d 0%,
      #49c38e 48%,
      #c8b84f 72%,
      #d98742 88%,
      #d84d4d 100%
    );

  border-radius: 1px 1px 0 0;
  opacity: 0.35;
  transform-origin: bottom;

  box-shadow:
    0 0 4px rgba(73, 195, 142, 0.18);

  transition:
    height 95ms ease-out,
    opacity 95ms ease-out,
    box-shadow 120ms ease-out;
}
.playlist-player.is-playing .playlist-meter span {
  box-shadow:
    0 0 6px rgba(73, 195, 142, 0.28),
    0 0 10px rgba(216, 187, 79, 0.08);
}

.playlist-meter span:nth-child(n + 9) {
  filter: saturate(1.08);
}

.playlist-meter span:nth-child(n + 11) {
  filter: saturate(1.18) brightness(1.04);
}

/* =========================================
   DIGICO-INSPIRED VU METER
========================================= */

.playlist-meter {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 5px;

  height: 58px;
  margin: 24px 0 20px;
  padding: 9px 11px;

  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(4, 12, 15, 0.96),
      rgba(1, 5, 8, 0.98)
    );

  border: 1px solid rgba(99, 191, 210, 0.2);
  border-radius: 4px;

  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.playlist-meter::before {
  content: "";
  position: absolute;
  inset: 9px 11px;

  pointer-events: none;

  background:
    repeating-linear-gradient(
      to top,
      transparent 0,
      transparent 5px,
      rgba(0, 0, 0, 0.55) 6px,
      rgba(0, 0, 0, 0.55) 7px
    );

  z-index: 2;
}

.playlist-meter::after {
  content: "-48     -36     -24     -18     -12     -6     0";
  position: absolute;
  top: 3px;
  right: 10px;
  left: 10px;

  color: rgba(170, 201, 208, 0.45);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  text-align: justify;
  white-space: pre;

  pointer-events: none;
}

.playlist-meter span {
  position: relative;
  z-index: 1;

  flex: 1;
  min-width: 4px;
  height: 12%;

  background:
    linear-gradient(
      to top,
      #2aa47b 0%,
      #55c995 58%,
      #d8bb59 80%,
      #d7744c 100%
    );

  border-radius: 1px 1px 0 0;
  opacity: 0.35;

  box-shadow:
    0 0 5px rgba(68, 195, 151, 0.2);

  transition:
    height 70ms linear,
    opacity 70ms linear;
}

.playlist-player.is-playing .playlist-meter {
  border-color: rgba(99, 191, 210, 0.38);
  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(65, 157, 178, 0.08);
}

@keyframes rackMeter {
  from {
    height: 18%;
    opacity: 0.35;
  }

  to {
    height: 92%;
    opacity: 1;
  }
}

/* Timeline */

.playlist-timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.playlist-current-time,
.playlist-duration {
  color: var(--muted);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}

.playlist-progress,
.playlist-volume-slider {
  width: 100%;
  appearance: none;
  height: 4px;

  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  outline: none;
}

.playlist-progress::-webkit-slider-thumb,
.playlist-volume-slider::-webkit-slider-thumb {
  width: 14px;
  height: 14px;

  appearance: none;
  background: var(--gold);
  border: 2px solid #111;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(224, 190, 93, 0.25);
}

.playlist-progress::-moz-range-thumb,
.playlist-volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;

  background: var(--gold);
  border: 2px solid #111;
  border-radius: 50%;
}

/* Control panel */

.playlist-control-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;

  width: 100%;
  min-width: 0;
  padding-top: 22px;
  padding-left: 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 0;
}
.playlist-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.playlist-controls button {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;
  padding: 0;

  color: var(--gold);
  font: inherit;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(224, 190, 93, 0.42);
  border-radius: 50%;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.playlist-controls button:hover {
  color: #080808;
  background: var(--gold);
  transform: translateY(-2px);
}

.playlist-controls .playlist-play {
  width: 56px;
  height: 56px;

  color: #080808;
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(224, 190, 93, 0.18);
}

.playlist-controls .playlist-play:hover {
  transform: scale(1.05);
}

.playlist-volume {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.volume-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* Playback state */

.playlist-player.is-playing .status-light {
  animation: playbackPulse 1.1s ease-in-out infinite;
}

@keyframes playbackPulse {
  50% {
    opacity: 0.45;
    box-shadow: 0 0 4px rgba(224, 190, 93, 0.3);
  }
}

/* Hide native player */

.playlist-audio {
  display: none;
}

/* Mobile */

@media (max-width: 760px) {
  .playlist-player {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 22px 22px;
    padding: 22px;
  }

  .playlist-control-panel {
    min-width: 0;
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .playlist-heading {
    align-items: flex-start;
  }

  .playlist-title {
    font-size: 1rem;
  }
}
/* =========================================
   MEDIA CONFIDENTIALITY NOTE
========================================= */

.media-confidentiality {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  margin-top: 28px;
  padding: 20px 22px;

  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.confidentiality-icon {
  flex-shrink: 0;
  margin-top: 2px;

  color: var(--gold);
  font-size: 0.75rem;
}

.media-confidentiality p {
  max-width: 820px;
  margin: 0;

  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .media-confidentiality {
    padding: 18px;
  }
}
/* =========================================
   STEREO L/R OUTPUT METER
========================================= */

.stereo-meter {
  margin-top: 18px;
  padding: 14px 16px 12px;

  background:
    linear-gradient(
      180deg,
      rgba(2, 8, 11, 0.96),
      rgba(0, 3, 6, 0.98)
    );

  border: 1px solid rgba(99, 191, 210, 0.18);
  border-radius: 4px;

  box-shadow:
    inset 0 0 16px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.stereo-meter-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.stereo-meter-row + .stereo-meter-row {
  margin-top: 8px;
}

.stereo-meter-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.stereo-meter-track {
  position: relative;
  height: 10px;
  overflow: hidden;

  background:
    repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 7px,
      rgba(0, 0, 0, 0.3) 8px,
      rgba(0, 0, 0, 0.3) 10px
    );

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.stereo-meter-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;

  background:
    linear-gradient(
      to right,
      #2a9f70 0%,
      #49c38e 65%,
      #d5b74f 82%,
      #d66f49 94%,
      #d84d4d 100%
    );

  box-shadow:
    0 0 8px rgba(73, 195, 142, 0.18);

  transition: width 60ms linear;
}

.stereo-peak {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0%;

  width: 2px;

  background: #f5d36a;
  box-shadow: 0 0 6px rgba(245, 211, 106, 0.65);

  opacity: 0;
  transition:
    left 60ms linear,
    opacity 120ms ease;
}

.stereo-meter-value {
  color: rgba(220, 231, 234, 0.68);
  font-size: 0.66rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.stereo-meter-scale {
  display: grid;
  grid-template-columns: repeat(9, 1fr);

  margin-top: 8px;
margin-left: 28px;
margin-right: 42px;
width: calc(100% - 70px);

  color: rgba(170, 201, 208, 0.38);
  font-size: 0.5rem;
  letter-spacing: 0.03em;
}

.stereo-meter-scale span {
  text-align: center;
}

@media (max-width: 700px) {
  .stereo-meter {
    padding: 12px;
  }

  .stereo-meter-row {
    grid-template-columns: 16px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .stereo-meter-scale {
    margin-left: 24px;
    margin-right: 46px;
  }
}
/* =========================================
   COMPACT MEDIA PLAYER LAYOUT
========================================= */

.media-section .audio-header {
  min-height: 92px;
  padding: 20px 24px;
}

.media-section .audio-header h3 {
  margin-bottom: 6px;
}

.media-section .audio-header p {
  line-height: 1.5;
}

.media-section .audio-category .playlist-player {
  margin: 0 24px 24px;
}

.playlist-player {
  gap: 18px;
  padding: 18px 20px;
}

.playlist-status {
  margin-bottom: 12px;
}

.playlist-type {
  margin-bottom: 3px;
  font-size: 0.64rem;
}

.playlist-title {
  font-size: 1rem;
}

.playlist-meter {
  height: 46px;
  margin: 16px 0 14px;
  padding: 7px 9px;
}

.stereo-meter {
  margin-top: 12px;
  padding: 10px 12px 9px;
}

.stereo-meter-row + .stereo-meter-row {
  margin-top: 6px;
}

.stereo-meter-track {
  height: 8px;
}

.stereo-meter-scale {
  margin-top: 5px;
  font-size: 0.45rem;
}

.playlist-timeline {
  margin-top: 10px;
}

.playlist-control-panel {
  gap: 14px;
  padding-top: 14px;
}

.playlist-controls {
  gap: 10px;
}

.playlist-controls button {
  width: 36px;
  height: 36px;
}

.playlist-controls .playlist-play {
  width: 48px;
  height: 48px;
}

.playlist-volume {
  width: min(220px, 100%);
}

.media-confidentiality {
  margin-top: 20px;
  padding: 16px 18px;
}

@media (max-width: 700px) {
  .media-section .audio-header {
    padding: 18px;
  }

  .media-section .audio-category .playlist-player {
    margin: 0 18px 18px;
  }

  .playlist-player {
    padding: 16px;
  }

  .playlist-meter {
    height: 42px;
  }

  .playlist-controls .playlist-play {
    width: 46px;
    height: 46px;
  }
}
/* =========================================
   REBEL EXPERIENCE PAGE
========================================= */

.rebel-back-link {
  position: fixed;
  top: 24px;
  left: 28px;
  z-index: 20;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;

  color: rgba(255, 255, 255, 0.82);
  background: rgba(5, 7, 10, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.rebel-back-link:hover {
  color: var(--gold);
  border-color: rgba(224, 190, 93, 0.55);
  transform: translateY(-2px);
}

.rebel-hero {
  position: relative;
  min-height: 78vh;

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

  padding:
    clamp(140px, 18vw, 260px)
    clamp(24px, 7vw, 110px)
    clamp(70px, 9vw, 120px);

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.7) 42%,
      rgba(0, 0, 0, 0.28) 72%,
      rgba(0, 0, 0, 0.66) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.38) 58%,
      rgba(0, 0, 0, 0.92) 100%
    ),
    url("assets/rebel-1.jpg") center 32% / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.rebel-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 74% 30%,
      rgba(29, 105, 145, 0.2),
      transparent 38%
    );

  pointer-events: none;
}

.rebel-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.14) 48%,
      rgba(0, 0, 0, 0.58) 100%
    );

  pointer-events: none;
}

.rebel-hero-content {
  position: relative;
  z-index: 2;

  width: min(760px, 100%);
}

.rebel-hero .eyebrow {
  margin-bottom: 18px;

  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rebel-hero h1 {
  max-width: 820px;
  margin: 0;

  color: #ffffff;
  font-size: clamp(2.5rem, 5.4vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.rebel-hero h2 {
  margin: 26px 0 0;

  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.rebel-hero-tenure {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 22px 0 0;

  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rebel-hero-tenure span {
  color: rgba(255, 255, 255, 0.4);
}

.rebel-hero-summary {
  max-width: 680px;
  margin: 24px 0 0;

  color: rgba(236, 241, 244, 0.78);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.rebel-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  width: min(1120px, calc(100% - 48px));
  margin: -38px auto 90px;

  position: relative;
  z-index: 4;

  background:
    linear-gradient(
      145deg,
      rgba(23, 32, 40, 0.96),
      rgba(8, 11, 15, 0.98)
    );

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.rebel-snapshot-item {
  min-height: 122px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 24px 28px;
}

.rebel-snapshot-item + .rebel-snapshot-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.rebel-snapshot-item strong {
  color: var(--gold);
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
  line-height: 1;
}

.rebel-snapshot-item span {
  margin-top: 10px;

  color: rgba(229, 236, 239, 0.65);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .rebel-hero {
    min-height: 720px;
    background-position: 62% center;
  }

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

  .rebel-snapshot-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .rebel-snapshot-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 600px) {
  .rebel-back-link {
    top: 14px;
    left: 14px;
  }

  .rebel-hero {
    min-height: 760px;
    align-items: flex-end;

    padding:
      150px
      22px
      74px;

    background-position: 66% center;
  }

  .rebel-hero-summary {
    line-height: 1.62;
  }

  .rebel-snapshot {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: -26px;
    margin-bottom: 64px;
  }

  .rebel-snapshot-item {
    min-height: 104px;
    padding: 20px 22px;
  }

  .rebel-snapshot-item + .rebel-snapshot-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
/* Force REBEL hero image */
.rebel-hero {
  background-image: url("./assets/rebel-hero.jpg") !important;
  background-size: cover !important;
  background-position: center 44% !important;
  background-repeat: no-repeat !important;
}
/* =========================================
   REBEL PRODUCTION GALLERY INTRO
========================================= */

.rebel-gallery-intro {
  width: min(1180px, calc(100% - 48px));
  margin: 40px auto 110px;

  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: stretch;
}

.rebel-gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: clamp(28px, 4vw, 54px);

  background:
    linear-gradient(
      145deg,
      rgba(21, 29, 37, 0.96),
      rgba(8, 11, 15, 0.98)
    );

  border: 1px solid rgba(255, 255, 255, 0.11);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.rebel-gallery-copy .eyebrow {
  margin: 0 0 14px;

  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rebel-gallery-copy h2 {
  margin: 0;

  color: #fff;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.rebel-gallery-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 0;

  color: rgba(231, 237, 240, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
}

.rebel-gallery-button {
  width: fit-content;
  margin-top: 30px;
  padding: 12px 18px;

  color: #080b0f;
  background: var(--gold);

  border: 1px solid var(--gold);
  border-radius: 999px;

  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.rebel-gallery-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 28px rgba(224, 190, 93, 0.22),
    0 0 18px rgba(224, 190, 93, 0.12);
}

.rebel-gallery-feature {
  position: relative;
  min-height: 520px;
  padding: 0;
  overflow: hidden;

  color: inherit;
  background: #0b0f13;

  border: 1px solid rgba(255, 255, 255, 0.11);

  cursor: pointer;

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38);

  isolation: isolate;
}

.rebel-gallery-feature img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;

  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.rebel-gallery-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.2) 46%,
      rgba(0, 0, 0, 0.84) 100%
    );

  pointer-events: none;
}

.rebel-gallery-feature-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;

  text-align: left;
}

.rebel-gallery-feature-label small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rebel-gallery-feature-label strong {
  color: #fff;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.rebel-gallery-feature:hover img {
  transform: scale(1.035);
  filter: brightness(1.06) saturate(1.05);
}

@media (max-width: 900px) {
  .rebel-gallery-intro {
    grid-template-columns: 1fr;
  }

  .rebel-gallery-feature {
    min-height: 440px;
  }
}

@media (max-width: 600px) {
  .rebel-gallery-intro {
    width: calc(100% - 28px);
    margin-top: 26px;
    margin-bottom: 72px;
    gap: 18px;
  }

  .rebel-gallery-copy {
    padding: 26px 22px;
  }

  .rebel-gallery-feature {
    min-height: 360px;
  }

  .rebel-gallery-feature-label {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
/* =========================================
   REBEL ROLE STORY
========================================= */

.rebel-role {
  width: min(1180px, calc(100% - 48px));
  margin: 20px auto 90px;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;

  padding: clamp(36px, 5vw, 70px);

  background:
    linear-gradient(
      145deg,
      rgba(19, 27, 34, 0.96),
      rgba(7, 10, 14, 0.98)
    );

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.rebel-role-heading {
  position: sticky;
  top: 110px;
}

.rebel-role-heading .eyebrow {
  margin: 0 0 16px;

  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rebel-role-heading h2 {
  margin: 0;

  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.rebel-role-copy {
  padding-left: clamp(0px, 2vw, 28px);

  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.rebel-role-copy p {
  margin: 0;

  color: rgba(231, 237, 240, 0.74);
  font-size: clamp(0.96rem, 1.15vw, 1.06rem);
  line-height: 1.8;
}

.rebel-role-copy p + p {
  margin-top: 24px;
}

.rebel-role-copy p:first-child::first-letter {
  float: left;

  margin: 8px 10px 0 0;

  color: var(--gold);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 0.72;
}

@media (max-width: 900px) {
  .rebel-role {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .rebel-role-heading {
    position: static;
  }

  .rebel-role-copy {
    padding-left: 0;
    padding-top: 30px;

    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 600px) {
  .rebel-role {
    width: calc(100% - 28px);
    margin-bottom: 64px;
    padding: 28px 22px;
  }

  .rebel-role-copy p {
    line-height: 1.68;
  }
}
/* =========================================
   REBEL DAILY RESPONSIBILITIES
========================================= */

.rebel-duties {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 90px;

  padding: clamp(36px, 5vw, 70px);

  background:
    linear-gradient(
      145deg,
      rgba(19, 27, 34, 0.96),
      rgba(8, 11, 15, 0.98)
    );

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

  box-shadow:
    0 24px 70px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.035);
}

.rebel-duties-heading {
  max-width: 760px;
}

.rebel-duties-heading .eyebrow {
  margin-bottom: 14px;

  color: var(--gold);

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .18em;
  text-transform: uppercase;
}

.rebel-duties-heading h2 {
  margin: 0;

  color: white;

  font-size: clamp(2rem,4vw,4rem);

  line-height: 1;
  letter-spacing: -.04em;
}

.rebel-duties-heading p {
  margin-top: 24px;

  color: rgba(231,237,240,.72);

  line-height: 1.8;

  max-width: 760px;
}

.rebel-duties-grid {
  margin-top: 48px;

  display: grid;

  grid-template-columns: repeat(2,minmax(0,1fr));

  gap: 24px;
}

.duty-card {
    padding: 28px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 14px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;

    box-shadow:
        0 12px 28px rgba(0,0,0,.18);
}
.duty-card:hover {

    transform: translateY(-8px);

    border-color: rgba(224,190,93,.55);

    background: rgba(255,255,255,.05);

    box-shadow:
        0 18px 45px rgba(0,0,0,.35),
        0 0 24px rgba(224,190,93,.08);

}
.duty-card h3 {

  color: white;

  margin-bottom: 14px;

}

.duty-card p {

  color:
    rgba(231,237,240,.68);

  line-height: 1.75;

}

@media (max-width:900px){

.rebel-duties-grid{

grid-template-columns:1fr;

}

}

@media (max-width:600px){

.rebel-duties{

width:calc(100% - 28px);

padding:28px 22px;

}

}
.rebel-systems,
.rebel-touring{
    max-width:min(1180px,calc(100% - 48px));
    margin:90px auto;
    padding:clamp(36px,5vw,70px);

    background:
        linear-gradient(
            145deg,
            rgba(19,27,34,.96),
            rgba(8,11,15,.98)
        );

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

    box-shadow:
        0 24px 70px rgba(0,0,0,.34),
        inset 0 1px 0 rgba(255,255,255,.035);
}
/* =========================================
   REBEL GALLERY CAPTION
========================================= */

.gallery-modal {
  align-items: center;
  justify-content: center;
  padding: 70px 90px;
}

#rebel-gallery-image {
    max-width: min(78vw, 1100px);
    max-height: 76vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-caption {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);

  width: min(560px, calc(100% - 180px));
  padding: 16px 22px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  text-align: center;

  background: rgba(7, 10, 13, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);

  z-index: 5;
}

.gallery-caption strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.gallery-caption span {
  color: rgba(231, 237, 240, 0.7);
  font-size: 0.84rem;
  line-height: 1.5;
}

.gallery-counter {
  position: fixed;
  right: 30px;
  bottom: 28px;

  padding: 8px 12px;

  color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 10, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;

  z-index: 6;
}

@media (max-width: 700px) {
  .gallery-modal {
    padding: 70px 18px 130px;
  }

  #rebel-gallery-image {
    max-width: 92vw;
    max-height: 68vh;
  }

  .gallery-caption {
    bottom: 52px;
    width: calc(100% - 36px);
    padding: 13px 16px;
  }

  .gallery-counter {
    right: 18px;
    bottom: 14px;
  }
}
.rebel-video-controls {
    position: fixed;
    left: 50%;
    bottom: 145px;
    transform: translateX(-50%);

    width: min(520px, 72vw);
    height: 34px;
    padding: 5px 10px;

    align-items: center;
    gap: 8px;

    background: rgba(0, 0, 0, 0.72);
    border-radius: 8px;

    z-index: 20;
    opacity: 0;
transition: opacity 0.25s ease;
pointer-events: none;
}
.rebel-video-controls.visible {
  opacity: 1;
  pointer-events: auto;
}


#rebel-video-play {
    flex: 0 0 auto;
    cursor: pointer;
}

#rebel-video-progress {
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

#rebel-video-time {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px;
    color: white;
}

@media (max-width: 600px) {
  .gallery-card {
    min-height: 180px;
    padding: 20px;
  }

  .rebel-gallery-feature {
    min-height: 170px;
    background-image: url("assets/rebel-1.jpg?v=3");
    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;
  }

  .rebel-gallery-feature img {
  object-position: center 12%;
}

.rebel-gallery-feature:hover img {
  transform: none;
  filter: none;
}
}

@media (max-width: 600px) {
    .console-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
  .console-card:nth-child(1),
.console-card:nth-child(2),
.console-card:nth-child(3),
.console-card:nth-child(4) {
    grid-column: auto;
}

.console-card:nth-child(5) {
    grid-column: 1 / -1;
}
    .console-card {
        min-height: 210px;
        padding: 18px;
    }

    .console-card h3 {
        font-size: 23px;
        line-height: 1.05;
    }

    .console-card span {
    font-size: 11px;
    line-height: 1.45;
}

}
@media (max-width: 600px) {

.artists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.artist-card {
    min-height: 220px;
    padding: 18px;
}

.artist-card h3 {
    font-size: 24px;
    line-height: 1.05;
}

.artist-card span {
    font-size: 11px;
    line-height: 1.4;
}

.artist-card:last-child {
    grid-column: 1 / -1;
}
.featured-tour-video {
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.55);
    transform-origin: center center;
    opacity: 0.5;
}

}
/* ===== DANFORTH ROLE SECTION ===== */

.danforth-role-section {
  max-width: var(--max);
  margin: 0 auto;
}

.danforth-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.danforth-role-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(34, 34, 42, 0.96), rgba(11, 12, 15, 0.94));
}

.danforth-role-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.danforth-role-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .danforth-role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .danforth-role-card {
    min-height: 0;
    padding: 20px;
  }

  .danforth-role-card h3 {
    font-size: 18px;
  }
}
.danforth-role-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.danforth-role-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(216, 179, 75, 0.12);
}
.danforth-role-card {
  animation: danforthCardIn 0.6s ease both;
}

.danforth-role-card:nth-child(2) { animation-delay: 0.08s; }
.danforth-role-card:nth-child(3) { animation-delay: 0.16s; }
.danforth-role-card:nth-child(4) { animation-delay: 0.24s; }
.danforth-role-card:nth-child(5) { animation-delay: 0.32s; }
.danforth-role-card:nth-child(6) { animation-delay: 0.40s; }

@keyframes danforthCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.danforth-role-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(216, 179, 75, 0.12);
}
/* ===== DANFORTH HERO ===== */

.danforth-hero-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.danforth-hero-image {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.danforth-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75);
}

.danforth-hero-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
}

.danforth-hero-copy h2 {
  margin: 0 0 24px;
  font-size: 26px;
}

.danforth-hero-copy > p:last-child {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

@media (max-width: 900px) {
  .danforth-hero-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .danforth-hero-image,
  .danforth-hero-image img {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .danforth-hero-section {
    gap: 24px;
  }

  .danforth-hero-image,
  .danforth-hero-image img {
    min-height: 320px;
  }

  .danforth-hero-copy h1 {
    font-size: 38px;
  }

  .danforth-hero-copy h2 {
    font-size: 22px;
  }
}
/* ===== DANFORTH HERO FINAL OVERRIDE ===== */

.danforth-hero-section {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px;
  align-items: center;
}

.danforth-hero-image {
  display: block !important;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.danforth-hero-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 900px) {
  .danforth-hero-section {
    grid-template-columns: 1fr !important;
  }

  .danforth-hero-image {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .danforth-hero-image {
    height: 320px;
  }
}
/* ===== DANFORTH GALLERY ===== */

.danforth-gallery-section {
  max-width: var(--max);
  margin: 0 auto;
}

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

.danforth-gallery-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #090a0d;
  cursor: pointer;
}

.danforth-gallery-card img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  visibility: visible;
  transition: transform 0.35s ease;
}

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

.danforth-gallery-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.danforth-gallery-label span {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

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

  .danforth-gallery-card:last-child {
    grid-column: 1 / -1;
  }
}

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

  .danforth-gallery-card:last-child {
    grid-column: auto;
  }

  .danforth-gallery-card,
.danforth-gallery-card img {
  min-height: 220px;
}
}
/* ===== DANFORTH VIDEO GALLERY CARD ===== */

.danforth-video-card {
  grid-column: 1 / -1;
  height: 390px;
  overflow: hidden;
}

.danforth-video-card video {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  visibility: visible;
  background: #090a0d;
}

.danforth-video-card .danforth-gallery-label {
  pointer-events: none;
}

@media (max-width: 600px) {
  .danforth-video-card {
    grid-column: auto;
    height: 240px;
  }

  .danforth-video-card video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    background: #090a0d;
  }
}
/* ===== DANFORTH FEATURED VIDEO LABEL ===== */

.danforth-video-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  bottom: 22px;
}

.danforth-video-kicker {
  color: var(--gold) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.danforth-video-title {
  color: var(--white) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

@media (max-width: 600px) {
  .danforth-video-label {
    bottom: 18px;
  }

  .danforth-video-title {
    font-size: 16px !important;
  }
}
/* =========================================================
   CBC EXPERIENCE PAGE
   ========================================================= */


/* ===== CBC HERO ===== */

.cbc-hero-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.cbc-hero-image {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090a0d;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.cbc-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  visibility: visible;
}

.cbc-hero-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
}

.cbc-hero-copy h2 {
  margin: 0 0 24px;
  font-size: 26px;
}

.cbc-hero-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}


/* ===== CBC ROLE SECTION ===== */

.cbc-role-section {
  max-width: var(--max);
  margin: 0 auto;
}

.cbc-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.cbc-role-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(34, 34, 42, 0.96),
      rgba(11, 12, 15, 0.94)
    );

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;

  animation: cbcCardIn 0.6s ease both;
}

.cbc-role-card:nth-child(2) {
  animation-delay: 0.08s;
}

.cbc-role-card:nth-child(3) {
  animation-delay: 0.16s;
}

.cbc-role-card:nth-child(4) {
  animation-delay: 0.24s;
}

.cbc-role-card:nth-child(5) {
  animation-delay: 0.32s;
}

.cbc-role-card:nth-child(6) {
  animation-delay: 0.40s;
}

.cbc-role-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(216, 179, 75, 0.12);
}

.cbc-role-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.cbc-role-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@keyframes cbcCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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


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

.cbc-gallery-section {
  max-width: var(--max);
  margin: 0 auto;
}

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


/* Top three cards */

.cbc-gallery-card:nth-child(1),
.cbc-gallery-card:nth-child(2),
.cbc-gallery-card:nth-child(3) {
  grid-column: span 2;
}


/* Bottom two wider cards */

.cbc-gallery-card:nth-child(4),
.cbc-gallery-card:nth-child(5) {
  grid-column: span 3;
}


.cbc-gallery-card {
  position: relative;
  height: 300px;
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 16px;

  background: #090a0d;
}

.cbc-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  opacity: 1;
  visibility: visible;

  transition: transform 0.35s ease;
}

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


/* Dark fade behind gallery labels */

.cbc-gallery-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(0, 0, 0, 0.82)
    );

  pointer-events: none;
}


.cbc-gallery-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;

  z-index: 2;
}

.cbc-gallery-label span {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;

  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.85);
}


/* ===== CBC TABLET ===== */

@media (max-width: 900px) {

  .cbc-hero-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cbc-hero-image {
    height: 420px;
  }


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


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

  .cbc-gallery-card:nth-child(1),
  .cbc-gallery-card:nth-child(2),
  .cbc-gallery-card:nth-child(3),
  .cbc-gallery-card:nth-child(4) {
    grid-column: auto;
  }

  .cbc-gallery-card:nth-child(5) {
    grid-column: 1 / -1;
  }

}


/* ===== CBC MOBILE ===== */

@media (max-width: 600px) {

  .cbc-hero-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cbc-hero-image {
    height: 320px;
  }

  .cbc-hero-copy h1 {
    font-size: 38px;
  }

  .cbc-hero-copy h2 {
    font-size: 22px;
  }


  .cbc-role-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cbc-role-card {
    min-height: 0;
    padding: 20px;
  }

  .cbc-role-card h3 {
    font-size: 18px;
  }


  .cbc-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cbc-gallery-card:nth-child(1),
  .cbc-gallery-card:nth-child(2),
  .cbc-gallery-card:nth-child(3),
  .cbc-gallery-card:nth-child(4),
  .cbc-gallery-card:nth-child(5) {
    grid-column: auto;
  }

  .cbc-gallery-card {
    height: 230px;
  }

  .cbc-gallery-label {
    bottom: 16px;
  }

  .cbc-gallery-label span {
    font-size: 15px;
  }

}

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

.cbc-gallery-card {
  cursor: pointer;
}


/* Main overlay */

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

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

  padding: 40px 80px;

  background: rgba(3, 4, 6, 0.96);
  backdrop-filter: blur(12px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


.cbc-lightbox.cbc-lightbox-open {
  opacity: 1;
  visibility: visible;
}


body.cbc-lightbox-active {
  overflow: hidden;
}


/* Image container */

.cbc-lightbox-content {
  position: relative;

  display: flex;
  flex-direction: column;

  width: min(1100px, 82vw);
  max-height: 88vh;
}


.cbc-lightbox-image {
  display: block;

  width: 100%;
  max-height: 78vh;

  object-fit: contain;

  border-radius: 16px;

  opacity: 1;
  transform: none;

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.7);
}

.cbc-lightbox-image.cbc-image-visible {
  opacity: 1;
  transform: none;
}


/* Caption + counter */

.cbc-lightbox-info {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 16px 4px 0;
}


.cbc-lightbox-caption {
  color: var(--white);

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


.cbc-lightbox-counter {
  color: var(--gold);

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

  letter-spacing: 0.12em;
}


/* Close */

.cbc-lightbox-close {
  position: absolute;

  top: 24px;
  right: 30px;

  z-index: 3;

  width: 46px;
  height: 46px;

  border: 1px solid var(--line);
  border-radius: 50%;

  background: rgba(15, 16, 20, 0.88);

  color: var(--white);

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}


.cbc-lightbox-close:hover {
  border-color: var(--gold);
  transform: scale(1.06);
}


/* Previous / Next */

.cbc-lightbox-nav {
  position: absolute;
  top: 50%;

  z-index: 3;

  width: 52px;
  height: 70px;

  transform: translateY(-50%);

  border: 1px solid var(--line);
  border-radius: 14px;

  background: rgba(15, 16, 20, 0.84);

  color: var(--white);

  font-size: 44px;
  line-height: 1;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}


.cbc-lightbox-nav:hover {
  border-color: var(--gold);
  background: rgba(25, 26, 30, 0.96);
}


.cbc-lightbox-prev {
  left: 24px;
}


.cbc-lightbox-next {
  right: 24px;
}


/* ===== CBC LIGHTBOX MOBILE ===== */

@media (max-width: 600px) {

  .cbc-lightbox {
    padding: 70px 14px 30px;
  }


  .cbc-lightbox-content {
    width: 100%;
    max-height: 82vh;
  }


  .cbc-lightbox-image {
    width: 100%;
    max-height: 70vh;

    border-radius: 12px;
  }


  .cbc-lightbox-close {
    top: 16px;
    right: 16px;

    width: 40px;
    height: 40px;

    font-size: 26px;
  }


  .cbc-lightbox-nav {
    width: 42px;
    height: 56px;

    font-size: 34px;

    background: rgba(10, 11, 14, 0.72);
  }


  .cbc-lightbox-prev {
    left: 10px;
  }


  .cbc-lightbox-next {
    right: 10px;
  }


  .cbc-lightbox-info {
    padding: 12px 4px 0;
  }


  .cbc-lightbox-caption {
    font-size: 14px;
  }


  .cbc-lightbox-counter {
    font-size: 12px;
  }

}
/* =========================================================
   SHUBH INTERNATIONAL TOUR PAGE
   ========================================================= */


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

.shubh-page-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;

  gap: 56px;

  align-items: center;

  max-width: var(--max);
  margin: 0 auto;
}


.shubh-page-hero-media {
  position: relative;

  height: 540px;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: #090a0d;

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


.shubh-page-hero-media video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  filter: brightness(0.72);
}


.shubh-page-hero-overlay {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.48),
      transparent 55%
    );
}


.shubh-page-hero-copy h1 {
  margin: 8px 0 12px;

  font-size:
    clamp(42px, 5vw, 72px);

  line-height: 0.95;
}


.shubh-page-hero-copy h2 {
  margin: 0 0 24px;

  font-size: 26px;
}


.shubh-page-hero-copy > p {
  max-width: 620px;

  margin: 0;

  color: var(--muted);

  line-height: 1.7;
}


/* Tour location tags */

.shubh-tour-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 26px;
}


.shubh-tour-tags span {
  padding: 8px 13px;

  border: 1px solid
    rgba(216, 179, 75, 0.45);

  border-radius: 999px;

  color: var(--gold);

  background:
    rgba(216, 179, 75, 0.06);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}



/* =========================================================
   ROLE CARDS
   ========================================================= */

.shubh-role-section {
  max-width: var(--max);

  margin: 0 auto;
}


.shubh-role-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;

  margin-top: 28px;
}


.shubh-role-card {
  min-height: 200px;

  padding: 24px;

  border:
    1px solid var(--line);

  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(34, 34, 42, 0.96),
      rgba(11, 12, 15, 0.94)
    );

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.shubh-role-card:hover {
  transform:
    translateY(-6px);

  border-color:
    var(--gold);

  box-shadow:
    0 18px 40px
      rgba(0, 0, 0, 0.4),

    0 0 24px
      rgba(216, 179, 75, 0.12);
}


.shubh-role-card h3 {
  margin: 0 0 12px;

  font-size: 20px;
}


.shubh-role-card p {
  margin: 0;

  color: var(--muted);

  line-height: 1.55;
}



/* =========================================================
   TOUR WORKFLOW
   ========================================================= */

.shubh-workflow-section {
  max-width: var(--max);

  margin: 0 auto;
}


.shubh-workflow-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;

  margin-top: 30px;
}


.shubh-workflow-step {
  display: flex;

  gap: 18px;

  min-height: 155px;

  padding: 22px;

  border:
    1px solid var(--line);

  border-radius: 16px;

  background:
    rgba(16, 17, 21, 0.72);
}


.shubh-step-number {
  color: var(--gold);

  font-size: 13px;

  font-weight: 900;

  letter-spacing: 0.12em;
}


.shubh-workflow-step h3 {
  margin: 0 0 8px;

  font-size: 18px;
}


.shubh-workflow-step p {
  margin: 0;

  color: var(--muted);

  line-height: 1.5;
}



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

.shubh-gallery-section {
  max-width: var(--max);

  margin: 0 auto;
}


.shubh-gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(6, 1fr);

  gap: 14px;

  margin-top: 28px;
}


.shubh-gallery-card {
  position: relative;

  grid-column: span 2;

  height: 280px;

  overflow: hidden;

  border:
    1px solid var(--line);

  border-radius: 16px;

  background: #090a0d;

  cursor: pointer;
}


/* Featured first photo */

.shubh-gallery-featured {
  grid-column: span 4;

  height: 390px;
}


.shubh-gallery-card:nth-child(2) {
  grid-column: span 2;

  height: 390px;
}


/* Bottom four balance */

.shubh-gallery-card:nth-child(9),
.shubh-gallery-card:nth-child(10) {
  grid-column: span 3;
}


.shubh-gallery-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition:
    transform 0.35s ease,
    filter 0.35s ease;

  filter:
    brightness(0.82);
}


.shubh-gallery-card:hover img {
  transform:
    scale(1.035);

  filter:
    brightness(1);
}


.shubh-gallery-card::after {
  content: "";

  position: absolute;

  inset: 45% 0 0;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(0, 0, 0, 0.85)
    );

  pointer-events: none;
}


.shubh-gallery-label {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 17px;

  z-index: 2;
}


.shubh-gallery-label span {
  color: var(--white);

  font-size: 15px;

  font-weight: 700;

  text-shadow:
    0 2px 12px
      rgba(0, 0, 0, 0.85);
}



/* =========================================================
   TOUR VIDEOS
   ========================================================= */

.shubh-video-section {
  max-width: var(--max);

  margin: 0 auto;
}


.shubh-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.shubh-tour-video-card {
  overflow: hidden;

  border:
    1px solid var(--line);

  border-radius: 16px;

  background: #090a0d;
}


.shubh-tour-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  object-fit: contain;
  background: #090a0d;
}

.shubh-video-copy {
  padding: 18px 20px 20px;
}


.shubh-video-kicker {
  display: block;

  margin-bottom: 5px;

  color: var(--gold);

  font-size: 10px;

  font-weight: 900;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.shubh-video-copy h3 {
  margin: 0;

  font-size: 18px;
}



/* =========================================================
   SHUBH LIGHTBOX
   ========================================================= */

.shubh-lightbox {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 40px 80px;

  background:
    rgba(3, 4, 6, 0.96);

  backdrop-filter:
    blur(12px);

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}


.shubh-lightbox-open {
  opacity: 1;

  visibility: visible;
}


body.shubh-lightbox-active {
  overflow: hidden;
}


.shubh-lightbox-content {
  position: relative;

  display: flex;

  flex-direction: column;

  width:
    min(1100px, 82vw);

  max-height: 88vh;
}


.shubh-lightbox-image {
  display: block;

  width: 100%;

  max-height: 78vh;

  object-fit: contain;

  border-radius: 16px;

  opacity: 1;

  box-shadow:
    0 30px 90px
      rgba(0, 0, 0, 0.7);
}


.shubh-lightbox-info {
  display: flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 20px;

  padding: 16px 4px 0;
}


.shubh-lightbox-caption {
  color: var(--white);

  font-size: 16px;

  font-weight: 700;
}


.shubh-lightbox-counter {
  color: var(--gold);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.12em;
}


.shubh-lightbox-close {
  position: absolute;

  top: 24px;

  right: 30px;

  z-index: 3;

  width: 46px;
  height: 46px;

  border:
    1px solid var(--line);

  border-radius: 50%;

  background:
    rgba(15, 16, 20, 0.88);

  color: var(--white);

  font-size: 30px;

  line-height: 1;

  cursor: pointer;
}


.shubh-lightbox-nav {
  position: absolute;

  top: 50%;

  z-index: 3;

  width: 52px;
  height: 70px;

  transform:
    translateY(-50%);

  border:
    1px solid var(--line);

  border-radius: 14px;

  background:
    rgba(15, 16, 20, 0.84);

  color: var(--white);

  font-size: 44px;

  line-height: 1;

  cursor: pointer;
}


.shubh-lightbox-prev {
  left: 24px;
}


.shubh-lightbox-next {
  right: 24px;
}


.shubh-lightbox-nav:hover,
.shubh-lightbox-close:hover {
  border-color:
    var(--gold);
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .shubh-page-hero {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .shubh-page-hero-media {
    height: 440px;
  }


  .shubh-role-grid,
  .shubh-workflow-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


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


  .shubh-gallery-card,
  .shubh-gallery-featured,
  .shubh-gallery-card:nth-child(2),
  .shubh-gallery-card:nth-child(9),
  .shubh-gallery-card:nth-child(10) {
    grid-column: auto;

    height: 280px;
  }


  .shubh-video-grid {
    grid-template-columns: 1fr;
  }

}



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

@media (max-width: 600px) {

  .shubh-page-hero {
    grid-template-columns: 1fr;

    gap: 24px;
  }


  .shubh-page-hero-media {
    height: 330px;
  }


  .shubh-page-hero-copy h1 {
    font-size: 38px;
  }


  .shubh-page-hero-copy h2 {
    font-size: 22px;
  }


  .shubh-role-grid,
  .shubh-workflow-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .shubh-role-card {
    min-height: 0;

    padding: 20px;
  }


  .shubh-workflow-step {
    min-height: 0;
  }


  .shubh-gallery-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .shubh-gallery-card,
  .shubh-gallery-featured,
  .shubh-gallery-card:nth-child(2),
  .shubh-gallery-card:nth-child(9),
  .shubh-gallery-card:nth-child(10) {
    grid-column: auto;

    height: 240px;
  }


  .shubh-video-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }


  .shubh-lightbox {
    padding:
      70px 14px 30px;
  }


  .shubh-lightbox-content {
    width: 100%;
  }


  .shubh-lightbox-image {
    max-height: 70vh;

    border-radius: 12px;
  }


  .shubh-lightbox-close {
    top: 16px;

    right: 16px;

    width: 40px;

    height: 40px;

    font-size: 26px;
  }


  .shubh-lightbox-nav {
    width: 42px;

    height: 56px;

    font-size: 34px;

    background:
      rgba(10, 11, 14, 0.72);
  }


  .shubh-lightbox-prev {
    left: 10px;
  }


  .shubh-lightbox-next {
    right: 10px;
  }


  .shubh-lightbox-caption {
    font-size: 14px;
  }


  .shubh-lightbox-counter {
    font-size: 12px;
  }

}
/* =========================================================
   MASTER GALLERY PAGE
   ========================================================= */

.master-gallery-page {
  min-height: 100vh;
}

.gallery-back-button {
  position: relative;
  z-index: 5;
  margin: 24px 0 0 24px;
}


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

.master-gallery-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 30px;
}

.master-gallery-hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.95;
}

.master-gallery-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}


/* ===== FILTERS ===== */

.master-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.master-gallery-filter {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;

  background: rgba(16, 17, 21, 0.82);
  color: var(--muted);

  font: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.master-gallery-filter:hover,
.master-gallery-filter.active {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(216, 179, 75, 0.08);
}

.master-gallery-filter:hover {
  transform: translateY(-2px);
}


/* ===== GRID ===== */

.master-gallery-section {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 10px;
}

.master-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.master-gallery-item {
  position: relative;
  min-width: 0;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 16px;

  background: #090a0d;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.master-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 179, 75, 0.7);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(216, 179, 75, 0.08);
}

.master-gallery-wide {
  grid-column: span 2;
}


/* ===== PHOTOS ===== */

.master-gallery-item:not(.master-gallery-video) {
  height: 330px;
}

.master-gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.master-gallery-item:hover img {
  transform: scale(1.035);
  filter: brightness(1.03);
}


/* ===== PHOTO OVERLAY ===== */

.master-gallery-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 22px;

  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(5, 6, 8, 0.94) 0%,
      rgba(5, 6, 8, 0.42) 34%,
      rgba(5, 6, 8, 0.02) 70%
    );
}

.master-gallery-kicker {
  display: block;

  margin-bottom: 5px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.master-gallery-overlay h3,
.master-gallery-video-copy h3 {
  margin: 0;

  color: var(--white);

  font-size: 19px;
  line-height: 1.15;
}


/* ===== VIDEOS ===== */

.master-gallery-video {
  cursor: default;
}

.master-gallery-video video {
  width: 100%;
  aspect-ratio: 16 / 9;

  display: block;

  object-fit: cover;

  background: #050608;
}

.master-gallery-video-copy {
  padding: 16px 18px 18px;
}


/* ===== FILTER HIDE ===== */

.master-gallery-item.is-hidden {
  display: none;
}


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

.master-lightbox {
  position: fixed;
  inset: 0;

  z-index: 20000;

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

  padding: 40px 86px;

  background: rgba(3, 4, 6, 0.96);
  backdrop-filter: blur(12px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.master-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

body.master-lightbox-active {
  overflow: hidden;
}


/* ===== LIGHTBOX CONTENT ===== */

.master-lightbox-content {
  position: relative;

  display: flex;
  flex-direction: column;

  width: min(1180px, 88vw);
  max-height: 90vh;
}

.master-lightbox-image {
  width: 100%;
  max-height: 78vh;

  display: block;

  object-fit: contain;

  border-radius: 14px;

  opacity: 1;

  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.65);

  transition: opacity 0.18s ease;
}

.master-lightbox-image.is-changing {
  opacity: 0;
}


/* ===== LIGHTBOX INFO ===== */

.master-lightbox-info {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 14px 4px 0;
}

.master-lightbox-caption {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.master-lightbox-counter {
  color: var(--gold);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.1em;
}


/* ===== CLOSE ===== */

.master-lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;

  z-index: 4;

  width: 46px;
  height: 46px;

  border: 1px solid var(--line);
  border-radius: 50%;

  background: rgba(14, 15, 19, 0.88);
  color: var(--white);

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.master-lightbox-close:hover {
  border-color: var(--gold);
  transform: scale(1.05);
}


/* ===== PREVIOUS / NEXT ===== */

.master-lightbox-nav {
  position: absolute;
  top: 50%;

  z-index: 4;

  width: 52px;
  height: 70px;

  transform: translateY(-50%);

  border: 1px solid var(--line);
  border-radius: 14px;

  background: rgba(14, 15, 19, 0.84);
  color: var(--white);

  font-size: 42px;
  line-height: 1;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.master-lightbox-nav:hover {
  border-color: var(--gold);
  background: rgba(25, 26, 30, 0.96);
}

.master-lightbox-prev {
  left: 22px;
}

.master-lightbox-next {
  right: 22px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

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

  .master-gallery-wide {
    grid-column: span 2;
  }

  .master-gallery-item:not(.master-gallery-video) {
    height: 300px;
  }

  .master-lightbox {
    padding: 30px 60px;
  }

}


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

@media (max-width: 600px) {

  .gallery-back-button {
    margin: 16px 0 0 16px;
  }

  .master-gallery-hero {
    padding-top: 65px;
  }

  .master-gallery-hero h1 {
    font-size: 46px;
  }

  .master-gallery-intro {
    font-size: 15px;
  }

  .master-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .master-gallery-wide {
    grid-column: auto;
  }

  .master-gallery-item:not(.master-gallery-video) {
    height: 260px;
  }

  .master-gallery-overlay {
    padding: 16px;
  }

  .master-gallery-overlay h3,
  .master-gallery-video-copy h3 {
    font-size: 17px;
  }


  /* Lightbox */

  .master-lightbox {
    padding: 70px 12px 24px;
  }

  .master-lightbox-content {
    width: 100%;
  }

  .master-lightbox-image {
    max-height: 72vh;
    border-radius: 10px;
  }

  .master-lightbox-close {
    top: 14px;
    right: 14px;

    width: 40px;
    height: 40px;

    font-size: 24px;
  }

  .master-lightbox-nav {
    width: 42px;
    height: 58px;

    font-size: 34px;

    background: rgba(10, 11, 14, 0.74);
  }

  .master-lightbox-prev {
    left: 8px;
  }

  .master-lightbox-next {
    right: 8px;
  }

  .master-lightbox-info {
    padding: 12px 4px 0;
  }

  .master-lightbox-caption {
    font-size: 14px;
  }

  .master-lightbox-counter {
    font-size: 11px;
  }

}

/* ===== MASTER GALLERY VIDEO UNIFORM SIZE ===== */

.master-lightbox-video.is-visible {
  width: min(1100px, 84vw) !important;
  height: 74vh !important;
  max-width: 100% !important;
  max-height: 74vh !important;

  object-fit: contain !important;
  object-position: center !important;

  background: #000 !important;
  border-radius: 14px !important;
}

@media (max-width: 600px) {
  .master-lightbox-video.is-visible {
    width: 100% !important;
    height: 68vh !important;
    max-height: 68vh !important;
  }
}

/* ===== MASTER GALLERY VIDEO CARD PLAY OVERLAY ===== */

.master-gallery-video {
  position: relative;
  cursor: pointer;
}

.master-gallery-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.master-gallery-video::after {
  content: "▶";
  position: absolute;
  top: 42%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 54px;
  height: 54px;

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

  border-radius: 50%;

  background: rgba(15, 16, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);

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

  z-index: 3;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.master-gallery-video:hover::after {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: var(--gold);
  background: rgba(20, 20, 24, 0.92);
}

.master-gallery-video-copy {
  position: relative;
  z-index: 4;
}

/* ===== MASTER GALLERY VIDEO THUMBNAILS ===== */

.master-gallery-video {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: #090a0d;
}

.master-gallery-video video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  pointer-events: none;
}

.master-gallery-video-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 45px 16px 16px;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.92),
      rgba(0, 0, 0, 0)
    );

  z-index: 4;
}

.master-gallery-video::after {
  content: "▶";

  position: absolute;
  left: 50%;
  top: 48%;

  transform: translate(-50%, -50%);

  width: 54px;
  height: 54px;

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

  border-radius: 50%;

  background: rgba(15, 16, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #fff;
  font-size: 21px;

  z-index: 5;

  pointer-events: none;
}

/* Instagram contact button */
.contact-section a[href*="instagram.com"] {
  color: #fff;
  border: none;

  background:
    linear-gradient(
      45deg,
      #feda75,
      #fa7e1e,
      #d62976,
      #962fbf,
      #4f5bd5
    );

  box-shadow:
    0 8px 24px rgba(214, 41, 118, 0.22);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.contact-section a[href*="instagram.com"]:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(214, 41, 118, 0.3);

  filter: brightness(1.05);
}