/* ───────────────────────────────────────────────────────────
   SECTION SHELL
─────────────────────────────────────────────────────────── */
:root {
  --strip-wide: 40%;
  --strip-hover-w: 40%;
  --strip-first-hover: 18%;
}

.phs-section {
  position: relative;
  background: #070707;
  border-top: 1px solid rgba(240,146,30,.08);
  overflow: hidden;
}

/* ───────────────────────────────────────────────────────────
   TWO-COLUMN LAYOUT  (left text  |  right deck)
─────────────────────────────────────────────────────────── */
.phs-inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  min-height: 100vh;
  align-items: center;
  padding: 0 0 0 60px;
  gap: 0;
}

/* LEFT PANEL */
.phs-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 0;
  position: relative;
  z-index: 2;
}
.phs-eyebrow {
  font-size: 10px; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(240,146,30,.45); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.phs-eyebrow::before { content:''; width: 18px; height: 1px; background: rgba(240,146,30,.45); }
.phs-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .88;
  color: #f4f1ee;
  margin-bottom: 28px;
}
.phs-headline em {
  font-family: 'Playfair Display', serif;
  font-style: italic; color: #F0921E;
}
.phs-desc {
  font-size: 13px; line-height: 1.85;
  color: rgba(244,241,238,.42);
  max-width: 320px;
  margin-bottom: 44px;
  letter-spacing: .03em;
}

/* category counter indicator */
.phs-counter {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .14em;
  color: rgba(240,146,30,.4);
  margin-bottom: 24px;
}
.phs-counter strong { color: #F0921E; }

/* navigation row */
.phs-nav {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.phs-nav-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(240,146,30,.08);
  border: 1px solid rgba(240,146,30,.22);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: #F0921E;
  transition: all .28s cubic-bezier(.25,.46,.45,.94);
}
.phs-nav-btn:hover { background: rgba(240,146,30,.18); border-color: #F0921E; transform: scale(1.08); }
.phs-nav-btn:disabled { opacity: .28; cursor: not-allowed; }

/* dot indicators */
.phs-dots {
  display: flex; gap: 8px; align-items: center;
}
.phs-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(240,146,30,.2);
  transition: all .3s ease;
  cursor: pointer;
}
.phs-dot.active {
  background: #F0921E;
  box-shadow: 0 0 8px rgba(240,146,30,.5);
  transform: scale(1.3);
}

/* ───────────────────────────────────────────────────────────
   RIGHT PANEL — stacked deck container
─────────────────────────────────────────────────────────── */
.phs-right {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* ambient glow behind deck */
.phs-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  transition: background 0.8s ease;
}

/* The deck container — holds all cards */
.phs-deck {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: calc(100% - 155px); /* leaves room for peeking cards */
}

/* ───────────────────────────────────────────────────────────
   CARD
─────────────────────────────────────────────────────────── */
.phs-card {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 0;
  overflow: hidden;
  transition: transform .72s cubic-bezier(.22,.68,0,1.2),
              opacity .55s ease,
              filter .55s ease;
  will-change: transform, opacity;
  cursor: pointer;
}

/* ── CARD POSITIONS ── */
/* Front card — fully visible, interactive */
.phs-card[data-pos="0"] {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0px);
  z-index: 10;
}
/* 1 behind — 88px header peeks above front card */
.phs-card[data-pos="1"] {
  transform: translateY(-88px);
  opacity: 1;
  filter: blur(1px);
  z-index: 9;
}
/* 2 behind — 155px total, so 67px more peeks above card 1 */
.phs-card[data-pos="2"] {
  transform: translateY(-155px);
  opacity: .75;
  filter: blur(2.5px);
  z-index: 8;
}
/* Hidden — waiting off screen */
.phs-card[data-pos="hidden"] {
  transform: translateY(-210px);
  opacity: 0;
  filter: blur(4px);
  z-index: 7;
  pointer-events: none;
}
/* Exit — sweeps out to the left */
.phs-card[data-pos="exit"] {
  transform: translateX(-110%) translateY(-8px) rotate(-7deg);
  opacity: 0;
  z-index: 11;
  pointer-events: none;
  transition: transform .62s cubic-bezier(.38,.0,.56,1),
              opacity .45s ease;
}

/* ── CARD HEADER (always visible — the peek zone) ── */
.phs-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 88px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.phs-card-cat-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: .06em;
  color: #f4f1ee;
  line-height: 1;
}
/* divider line in header */
.phs-card-hline {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 0 20px;
}
.phs-card-num {
  font-family: 'DM Mono', monospace;
  font-size: 13px; letter-spacing: .16em;
  color: rgba(240,146,30,.5);
}

/* ── CARD BODY (only fully visible when front) ── */
.phs-card-body {
  position: absolute;
  inset: 88px 0 0 0;
  display: flex;
  flex-direction: column;
  transition: opacity .45s ease;
}
/* Hide body when card is behind */
.phs-card:not([data-pos="0"]) .phs-card-body {
  opacity: 0;
  pointer-events: none;
}
.phs-card[data-pos="0"] .phs-card-body { opacity: 1; }

/* circle → arrow (mimics Veronica PW) */
.phs-circle-arrow {
  position: absolute;
  top: 28px; left: 36px;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(240,146,30,.08);
  border: 1px solid rgba(240,146,30,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #F0921E;
  cursor: pointer; z-index: 5;
  transition: all .3s ease;
}
.phs-circle-arrow:hover { background: rgba(240,146,30,.2); transform: scale(1.1); }

/* card gradient visual zone */
.phs-card-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.phs-card-gradient {
  position: absolute; inset: 0;
  transition: transform .7s ease;
}
.phs-card:hover .phs-card-gradient { transform: scale(1.04); }
.phs-card-bg-icon {
  position: relative; z-index: 2;
  font-size: clamp(80px, 12vw, 160px);
  filter: drop-shadow(0 8px 30px rgba(240,146,30,.2));
  opacity: .85;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.phs-card:hover .phs-card-bg-icon { transform: scale(1.06) translateY(-6px); }
.phs-card-big-text {
  position: absolute;
  bottom: 20px; right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 12vw, 160px);
  color: rgba(240,146,30,.04);
  line-height: 1; letter-spacing: -.02em;
  pointer-events: none; user-select: none;
}

/* card footer */
.phs-card-footer {
  padding: 24px 36px 28px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: space-between;
}
.phs-card-sub {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244,241,238,.35);
}
.phs-explore-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: .2em;
  color: #0d0d0d; background: #F0921E;
  padding: 8px 20px;
  border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: background .28s, box-shadow .28s;
}
.phs-explore-btn:hover { background: #FFB347; box-shadow: 0 6px 28px rgba(240,146,30,.28); }

/* gradient presets per category */
.phs-grad-concert  { background: radial-gradient(ellipse at 60% 40%, rgba(160,50,0,.55) 0%, rgba(20,6,0,1) 70%); }
.phs-grad-documentary{ background: radial-gradient(ellipse at 60% 40%, rgba(140,110,60,.42) 0%, rgba(14,11,7,1) 70%); }
.phs-grad-fashion  { background: radial-gradient(ellipse at 60% 40%, rgba(120,0,80,.55) 0%, rgba(14,0,10,1) 70%); }
.phs-grad-event    { background: radial-gradient(ellipse at 60% 40%, rgba(0,60,120,.55) 0%, rgba(0,8,18,1) 70%); }
.phs-grad-travel   { background: radial-gradient(ellipse at 60% 40%, rgba(0,100,70,.5) 0%, rgba(0,10,8,1) 70%); }
.phs-grad-landscape{ background: radial-gradient(ellipse at 60% 40%, rgba(60,80,0,.55) 0%, rgba(6,8,0,1) 70%); }
.phs-grad-fineart  { background: radial-gradient(ellipse at 60% 40%, rgba(100,60,0,.5) 0%, rgba(10,7,0,1) 70%); }

/* section ambient glow per category */
.phs-glow.concert  { background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(240,100,20,.06) 0%, transparent 60%); }
.phs-glow.documentary{ background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(210,170,90,.06) 0%, transparent 60%); }
.phs-glow.fashion  { background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(180,0,120,.06) 0%, transparent 60%); }
.phs-glow.event    { background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(0,100,200,.06) 0%, transparent 60%); }
.phs-glow.travel   { background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(0,160,100,.05) 0%, transparent 60%); }
.phs-glow.landscape{ background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(80,120,0,.05) 0%, transparent 60%); }
.phs-glow.fineart  { background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(160,100,0,.05) 0%, transparent 60%); }

/* ───────────────────────────────────────────────────────────
   OVERLAY — shared for album slider + photo grid
─────────────────────────────────────────────────────────── */
.phs-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: #070707;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity .4s cubic-bezier(.25,.46,.45,.94);
}
.phs-overlay.open { opacity: 1; pointer-events: auto; }

/* overlay top bar */
.phs-ov-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 52px;
  border-bottom: 1px solid rgba(240,146,30,.1);
  flex-shrink: 0;
  background: rgba(7,7,7,.95);
  backdrop-filter: blur(14px);
  position: sticky; top: 0; z-index: 20;
}
.phs-breadcrumb {
  display: flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(244,241,238,.4);
}
.phs-bc-link {
  color: #F0921E; cursor: pointer;
  transition: opacity .2s;
}
.phs-bc-link:hover { opacity: .65; }
.phs-bc-sep { color: rgba(255,255,255,.18); }
.phs-bc-cur { color: #f4f1ee; }
.phs-ov-close {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
  color: rgba(244,241,238,.5);
  transition: all .25s;
}
.phs-ov-close:hover { background: rgba(255,70,70,.1); border-color: rgba(255,70,70,.3); color: #ff8f8f; }

/* overlay body (scrollable) */
.phs-ov-body {
  flex: 1; overflow-y: auto; padding: 52px;
  scrollbar-width: thin;
  scrollbar-color: rgba(240,146,30,.3) transparent;
  position: relative;
  min-height: 0;
}
.phs-ov-body::-webkit-scrollbar { width: 4px; }
.phs-ov-body::-webkit-scrollbar-thumb { background: rgba(240,146,30,.3); border-radius: 99px; }

/* strip mode overrides padding/scroll completely */
.phs-ov-body.strip-mode {
  padding: 0 !important;
  overflow: hidden !important;
}

/* ───────────────────────────────────────────────────────────
   ALBUM SLIDER (cursor-driven)
─────────────────────────────────────────────────────────── */
.phs-alb-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 44px; flex-wrap: wrap; gap: 12px;
}
.phs-alb-cat-icon { font-size: 44px; margin-bottom: 10px; display: block; }
.phs-alb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 110px);
  line-height: .86; color: #f4f1ee;
}
.phs-alb-sub {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244,241,238,.35); margin-top: 10px;
}
.phs-alb-hint {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(244,241,238,.18);
  display: flex; align-items: center; gap: 8px;
}
.phs-alb-hint span { color: rgba(240,146,30,.3); }

/* cursor-driven slider zone */
.phs-slider-zone {
  overflow: hidden; position: relative; cursor: none;
  height: 340px;
}
.phs-slider-zone::before, .phs-slider-zone::after {
  content:''; position: absolute; top: 0; bottom: 0;
  z-index: 10; pointer-events: none; width: 80px;
}
.phs-slider-zone::before { left: 0; background: linear-gradient(to right, #070707, transparent); }
.phs-slider-zone::after  { right: 0; background: linear-gradient(to left, #070707, transparent); }

.phs-slider-track {
  display: flex; gap: 14px; height: 100%; align-items: stretch;
  will-change: transform;
}

/* album cards */
.phs-alb-card {
  flex: 0 0 300px; height: 100%;
  position: relative; overflow: hidden;
  border: 1px solid rgba(240,146,30,.07);
  background: #0d0d0d;
  cursor: pointer;
  transition: border-color .4s, box-shadow .4s, transform .1s;
}
.phs-alb-card:hover {
  border-color: rgba(240,146,30,.3);
  box-shadow: 0 18px 55px rgba(0,0,0,.7), 0 0 30px rgba(240,146,30,.07);
}
.phs-alb-card:active { transform: scale(.97); }
.phs-alb-card-bg {
  position: absolute; inset: 0;
  transition: transform .65s ease;
}
.phs-alb-card:hover .phs-alb-card-bg { transform: scale(1.05); }

/* user photo inside album card */
.phs-alb-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.phs-alb-card:hover img { transform: scale(1.05); }

.phs-alb-card-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  color: rgba(240,146,30,.04); user-select: none; pointer-events: none;
}
.phs-alb-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
}
.phs-alb-card:hover .phs-alb-card-overlay { opacity: 1; }
.phs-alb-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; z-index: 3;
}
.phs-alb-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .06em; color: #f4f1ee; margin-bottom: 3px;
}
.phs-alb-card-loc {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: #F0921E;
}
.phs-alb-chip {
  position: absolute; top: 11px; left: 11px; z-index: 4;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(240,146,30,.65); background: rgba(0,0,0,.68);
  padding: 3px 9px; border: 1px solid rgba(240,146,30,.18);
  backdrop-filter: blur(4px);
}

/* slider custom cursor */
.phs-slider-cursor {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(240,146,30,.55); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9000;
  transform: translate(-50%,-50%);
  display: none; align-items: center; justify-content: center;
  font-size: 12px; color: #F0921E;
  background: rgba(240,146,30,.05);
  backdrop-filter: blur(4px);
  transition: width .18s, height .18s, background .18s;
}
.phs-slider-cursor.on { display: flex; }
.phs-slider-cursor.stop { width: 40px; height: 40px; background: rgba(240,146,30,.12); }

/* hint bar */
.phs-slider-hint {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 22px;
}
.phs-slider-hint-bar {
  width: 200px; height: 2px;
  background: rgba(240,146,30,.08); border-radius: 99px; overflow: hidden;
}
.phs-slider-hint-fill {
  height: 100%; width: 50%;
  background: #F0921E; border-radius: 99px;
  transition: width .12s linear;
}
.phs-slider-arrow { font-size: 12px; color: rgba(240,146,30,.28); }

/* ───────────────────────────────────────────────────────────
   STRIP VIEW — Misa Deco accordion
─────────────────────────────────────────────────────────── */

/* When strip view is active the overlay body becomes a fixed full-screen stage */
.phs-ov-body.strip-mode {
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* ── Title intro screen ── */
.strip-title-screen {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
}
.strip-title-year {
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(240,146,30,.55); margin-bottom: 14px;
  opacity: 0;
  animation: stripTitleIn .6s .1s cubic-bezier(.22,.68,0,1.2) forwards;
}
.strip-title-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 8vw, 110px);
  letter-spacing: .04em; line-height: .88;
  color: #f4f1ee; text-align: center;
  opacity: 0;
  animation: stripTitleIn .75s .22s cubic-bezier(.22,.68,0,1.2) forwards;
}
.strip-title-line {
  width: 40px; height: 1px; background: rgba(240,146,30,.4);
  margin-top: 18px;
  opacity: 0;
  animation: stripTitleIn .6s .38s ease forwards;
}
@keyframes stripTitleIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Strip container ── */
.strip-container {
  display: flex;
  flex-direction: row;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  overflow: hidden;
}

/* Each strip (one per photo) */
.strip-item {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  /* All strips start narrow and slide up from below */
  transform: translateY(100%);
  transition:
    flex .55s cubic-bezier(.22,.68,0,1.2),
    transform .0s; /* transform controlled by JS animation */
  flex-shrink: 0;
  background: #0a0a0a;
}

/* First strip wider by default */
.strip-item:first-child {
  flex: 0 0 var(--strip-wide, 40%);
}
/* Others: equal share of remaining space */
.strip-item:not(:first-child) {
  flex: 1 1 0;
  min-width: 0;
}

/* Hover: hovered strip expands, first shrinks */
.strip-container:hover .strip-item:first-child {
  flex: 0 0 var(--strip-first-hover, 20%);
}
.strip-container:hover .strip-item:not(:first-child) {
  flex: 1 1 0;
}
.strip-container:hover .strip-item:hover {
  flex: 0 0 var(--strip-hover-w, 38%) !important;
}

/* Photo inside strip — fills the strip, anchored left so panning reveals photo */
.strip-img {
  position: absolute; top: 0; left: 0;
  height: 100%; width: auto;
  min-width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  pointer-events: none;
  display: block;
}
/* When we only have the strip width but the image is full-frame, use cover */
.strip-item img.strip-cover {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .6s ease;
}
.strip-item:hover img { transform: scale(1.04); }

/* Placeholder gradient inside strip */
.strip-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.strip-ph-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 72px);
  color: rgba(240,146,30,.04);
  user-select: none; pointer-events: none;
}

/* Thin divider lines between strips */
.strip-item + .strip-item::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 1px;
  background: rgba(7,7,7,.8);
  z-index: 5; pointer-events: none;
}

/* Caption that appears on hover */
.strip-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 48px 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.strip-item:hover .strip-caption { opacity: 1; }
.strip-caption-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16px, 2.5vw, 24px);
  letter-spacing: .06em; color: #f4f1ee;
  margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.strip-caption-sub {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: #F0921E;
}

/* strip index chip */
.strip-chip {
  position: absolute; top: 14px; left: 14px; z-index: 4;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .16em;
  color: rgba(240,146,30,.55); background: rgba(0,0,0,.65);
  padding: 3px 9px; border: 1px solid rgba(240,146,30,.16);
  opacity: 0; transition: opacity .3s;
}
.strip-item:hover .strip-chip { opacity: 1; }

/* strip hover orange glow line at top */
.strip-item::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 5;
  background: linear-gradient(90deg, transparent, #F0921E, transparent);
  transform: scaleX(0);
  transition: transform .4s cubic-bezier(.22,.68,0,1.2);
  pointer-events: none;
}
.strip-item:hover::after { transform: scaleX(1); }

/* ── Strip counter bar ── */
.strip-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  height: 3px; background: rgba(255,255,255,.05);
  pointer-events: none;
}
.strip-bar-fill {
  height: 100%; background: #F0921E;
  transition: width .3s ease;
  width: 0;
}

/* ── Slide-up keyframe (triggered by JS with delay per strip) ── */
@keyframes stripRise {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* ── Mobile: stacked vertically ── */
@media (max-width: 600px) {
  .strip-container {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .strip-item { width: 100%; height: 45vw; flex: 0 0 auto !important; }
  .strip-item:first-child { height: 65vw; }
  .strip-item::before { display: none; }
  .strip-item::after { left: 0; right: 0; top: auto; bottom: 0; height: 2px; }
  .phs-ov-body.strip-mode { overflow-y: auto; }
}

/* ───────────────────────────────────────────────────────────
   LIGHTBOX
─────────────────────────────────────────────────────────── */
.phs-lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(3,3,3,.97);
  backdrop-filter: blur(28px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.phs-lightbox.open { opacity: 1; pointer-events: auto; }
.phs-lb-wrap {
  position: relative;
  max-width: min(88vw, 1100px);
  max-height: 76vh;
  display: flex; align-items: center; justify-content: center;
}
.phs-lb-wrap img {
  max-width: 100%; max-height: 76vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 40px 120px rgba(0,0,0,.85);
  display: block;
}
.phs-lb-ph {
  width: min(70vw, 800px); height: min(50vh, 500px);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 12vw, 140px);
  color: rgba(240,146,30,.05);
  border-radius: 4px;
}
.phs-lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(240,146,30,.1); border: 1px solid rgba(240,146,30,.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px; color: #F0921E;
  transition: all .25s; z-index: 2;
}
.phs-lb-btn:hover { background: rgba(240,146,30,.22); border-color: #F0921E; }
.phs-lb-prev { left: -66px; }
.phs-lb-next { right: -66px; }
.phs-lb-close {
  position: absolute; top: 22px; right: 22px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: rgba(244,241,238,.5);
  transition: all .25s;
}
.phs-lb-close:hover { background: rgba(255,70,70,.1); color: #ff8f8f; }
.phs-lb-caption {
  margin-top: 20px; text-align: center;
}
.phs-lb-cap-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .08em; color: #f4f1ee;
}
.phs-lb-cap-sub {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: #F0921E; margin-top: 4px;
}
.phs-lb-counter {
  position: absolute; bottom: 22px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .16em;
  color: rgba(240,146,30,.45);
}

/* ───────────────────────────────────────────────────────────
   ANIMATIONS
─────────────────────────────────────────────────────────── */
@keyframes phsFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───────────────────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .phs-inner { grid-template-columns: 1fr; padding: 0; }
  .phs-left { padding: 60px 40px 0; }
  .phs-right { height: 65vh; min-height: 480px; }
  .phs-alb-card { flex: 0 0 240px; }
  :root { --strip-wide: 36%; --strip-hover-w: 36%; }
}
@media (max-width: 768px) {
  .phs-left { padding: 48px 22px 0; }
  .phs-right { height: 56vh; min-height: 400px; }
  .phs-ov-bar { padding: 12px 20px; }
  .phs-ov-body { padding: 28px 20px; }
  .phs-alb-card { flex: 0 0 200px; }
  .phs-slider-zone { height: 260px; }
  .phs-slider-cursor { display: none !important; }
  .phs-lb-prev { left: -42px; }
  .phs-lb-next { right: -42px; }
  :root { --strip-wide: 50%; --strip-hover-w: 50%; --strip-first-hover: 18%; }
}
@media (max-width: 480px) {
  .phs-right { height: 52vh; min-height: 340px; }
  .phs-alb-card { flex: 0 0 170px; }
  .phs-slider-zone { height: 230px; }
  .phs-deck { height: calc(100% - 110px); }
  .phs-card[data-pos="1"] { transform: translateY(-60px); }
  .phs-card[data-pos="2"] { transform: translateY(-108px); }
  .phs-card-header { height: 60px; padding: 0 20px; }
  .phs-card[data-pos="hidden"] { transform: translateY(-160px); }
  .phs-card-cat-name { font-size: 22px; }
  .phs-lb-btn { width: 38px; height: 38px; font-size: 16px; }
  .phs-lb-prev { left: -42px; }
  .phs-lb-next { right: -42px; }
}
