/*
Theme Name: LISA // Global Icon
Theme URI: https://example.com/lisa-global-icon
Author: Student Portfolio Concept
Description: A cinematic editorial WordPress portfolio theme inspired by LISA. Unofficial educational fan project.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: lisa-portfolio
*/

:root {
  --black: #070707;
  --paper: #ebe9e2;
  --lime: #d7ff38;
  --red: #ff3b30;
  --chrome: #bfc1c4;
  --line: rgba(255, 255, 255, 0.22);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
button {
  font: inherit;
}
.site-header {
  height: 92px;
  padding: 0 2.25vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.76), transparent);
}
.wordmark {
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 1;
  justify-self: center;
}
.wordmark span {
  color: var(--lime);
}
.header-nav {
  display: flex;
  gap: 28px;
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
}
.header-nav a:hover {
  color: var(--lime);
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-tag {
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 11px 13px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.sound-toggle {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: #000;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.sound-bars {
  height: 14px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.sound-bars i {
  width: 2px;
  height: 5px;
  background: currentColor;
}
body.sound-on .sound-bars i {
  animation: equalize 0.65s ease-in-out infinite alternate;
}
body.sound-on .sound-bars i:nth-child(2) {
  animation-delay: -0.3s;
}
body.sound-on .sound-bars i:nth-child(3) {
  animation-delay: -0.5s;
}
@keyframes equalize {
  to {
    height: 14px;
  }
}
.sound-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    radial-gradient(circle at 72% 22%, rgba(215, 255, 56, 0.25), transparent 26%),
    var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}
.sound-gate:before {
  content: "L";
  position: absolute;
  font: 900 min(70vw, 760px) / 0.8 Arial, sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.sound-gate.is-dismissed {
  opacity: 0;
  visibility: hidden;
}
.sound-gate p {
  position: relative;
  margin: 0 0 26px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.6rem;
  font-weight: 900;
}
.sound-gate h2 {
  position: relative;
  margin: 0 0 44px;
  font-size: clamp(4.4rem, 10vw, 10rem);
  line-height: 0.78;
  letter-spacing: -0.075em;
}
.sound-gate h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  font-family: Georgia, serif;
  font-weight: 400;
}
.sound-enter,
.sound-skip {
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  font-weight: 900;
}
.sound-enter {
  border: 0;
  background: var(--lime);
  color: #000;
  padding: 18px 22px;
}
.sound-enter span {
  margin-left: 28px;
}
.sound-skip {
  margin-top: 18px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  padding: 7px 0;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  position: relative;
}
.hero-copy {
  padding: 150px 3vw 54px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.62rem;
  font-weight: 900;
  color: var(--lime);
}
.hero h1 {
  font-size: clamp(6rem, 15vw, 14rem);
  line-height: 0.65;
  letter-spacing: -0.09em;
  margin: 5vh 0 0;
  font-weight: 950;
}
.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  margin-left: 8vw;
}
.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: end;
}
.hero-foot p {
  max-width: 430px;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #c9c9c9;
}
.scroll-cue {
  justify-self: end;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  display: grid;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  font-weight: 900;
  animation: pulse 2.3s ease-in-out infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.08) rotate(5deg);
  }
}
.hero-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}
.hero-media img {
  height: 100%;
  filter: grayscale(1) contrast(1.18);
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0, transparent 25%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 50%);
}
.vertical {
  position: absolute;
  z-index: 2;
  right: 22px;
  top: 120px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.58rem;
}
.issue {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  right: 3vw;
  background: var(--red);
  padding: 12px 16px;
  transform: rotate(-4deg);
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ticker {
  background: var(--lime);
  color: #000;
  overflow: hidden;
  padding: 17px 0;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: run 18s linear infinite;
}
@keyframes run {
  to {
    transform: translateX(-33.33%);
  }
}
.intro {
  background: var(--paper);
  color: #000;
  padding: 7vw 4vw 10vw;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 6vw;
}
.number-label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 900;
}
.intro-side {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}
.intro-portrait {
  margin: 0;
  position: relative;
  transform: rotate(-2deg);
  background: var(--lime);
  padding: 10px 10px 34px;
  box-shadow: 14px 14px 0 #000;
}
.intro-portrait img {
  height: 38vw;
  min-height: 420px;
  filter: grayscale(1) contrast(1.14);
  object-position: center top;
}
.intro-portrait figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 0.53rem;
  letter-spacing: 0.16em;
  font-weight: 900;
}
.intro h2,
.era h2,
.album h2,
.credits h2 {
  font-size: clamp(3.8rem, 9.3vw, 10rem);
  line-height: 0.83;
  letter-spacing: -0.075em;
  margin: 0;
  font-weight: 950;
}
.intro h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.intro-copy {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  margin-top: 5vw;
}
.intro-copy p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #000;
  margin-top: 5vw;
}
.stat {
  background: var(--paper);
  padding: 25px 14px;
}
.stat b {
  font-size: 2.8rem;
  letter-spacing: -0.06em;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eras {
  padding: 9vw 3vw;
}
.era {
  display: grid;
  grid-template-columns: 0.5fr 1.1fr 0.8fr;
  gap: 4vw;
  padding: 5vw 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.era:last-child {
  border-bottom: 1px solid var(--line);
}
.era h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}
.era h2.outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.era img {
  height: 38vw;
  min-height: 460px;
  filter: saturate(0.6) contrast(1.1);
}
.era-copy p {
  line-height: 1.65;
  color: #bbb;
}
.era-copy strong {
  display: block;
  color: var(--lime);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.63rem;
}
.album {
  background: var(--red);
  color: #000;
  padding: 9vw 3vw;
}
.album-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.album-head h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.album-note {
  max-width: 430px;
  line-height: 1.6;
}
.track-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 55px 0 24px;
}
.track-filters button {
  border: 1px solid #000;
  background: transparent;
  padding: 10px 14px;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  font-weight: 900;
  cursor: pointer;
}
.track-filters button.active,
.track-filters button:hover {
  background: #000;
  color: #fff;
}
.track-list {
  border-top: 2px solid #000;
}
.track {
  display: grid;
  grid-template-columns: 55px 1fr 1fr 80px;
  gap: 25px;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  align-items: center;
}
.track.hide {
  display: none;
}
.track h3 {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  margin: 0;
  letter-spacing: -0.045em;
}
.track p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.86rem;
}
.track .score {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 950;
}
.track .tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.56rem;
  font-weight: 900;
}
.visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  color: #000;
}
.visual-copy {
  padding: 8vw 4vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.visual-copy blockquote {
  font:
    italic 400 clamp(2.5rem, 5vw, 6rem)/0.95 Georgia,
    serif;
  margin: 0;
}
.visual-copy p {
  max-width: 430px;
  line-height: 1.7;
}
.visual-image {
  position: relative;
  min-height: 750px;
}
.visual-image img {
  height: 100%;
  filter: grayscale(1) contrast(1.16);
}
.visual-image:before {
  content: "FASHION / PERFORMANCE / ATTITUDE";
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 20px;
  background: var(--lime);
  padding: 10px;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  font-weight: 900;
}
.timeline {
  padding: 9vw 4vw;
  background: #111;
}
.timeline-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 50px;
}
.timeline-head h2 {
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
  margin: 0;
}
.timeline-head p {
  max-width: 440px;
  line-height: 1.6;
  color: #aaa;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.moment {
  background: #111;
  padding: 28px;
  min-height: 250px;
}
.moment time {
  color: var(--lime);
  font-weight: 950;
  font-size: 2rem;
}
.moment h3 {
  font-size: 1.4rem;
  margin: 50px 0 12px;
}
.moment p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #aaa;
}
.credits {
  background: var(--lime);
  color: #000;
  padding: 9vw 4vw;
}
.credits h2 {
  font-size: clamp(3.5rem, 8vw, 8rem);
}
.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  margin-top: 50px;
}
.credits p,
.credits li {
  line-height: 1.65;
  font-size: 0.85rem;
}
.credits a {
  text-decoration: underline;
}
.disclaimer {
  font-weight: 900;
  border: 2px solid #000;
  padding: 24px;
  margin-top: 40px;
}
.site-footer {
  min-height: 160px;
  padding: 35px 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
}
.site-footer p {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #aaa;
}
.page-shell {
  max-width: 900px;
  margin: auto;
  padding: 150px 5vw 90px;
  min-height: 70vh;
}
.page-shell h1 {
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: -0.07em;
}
.entry-content {
  line-height: 1.8;
}
@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    min-height: 680px;
  }
  .hero-media {
    min-height: 95vh;
  }
  .hero-foot {
    grid-template-columns: 1fr auto;
  }
  .intro {
    grid-template-columns: 1fr;
  }
  .intro-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .intro-portrait img {
    height: 60vw;
  }
  .intro-copy {
    grid-column: 1;
  }
  .era {
    grid-template-columns: 1fr 1fr;
  }
  .era img {
    height: 70vw;
  }
  .era-copy {
    grid-column: 1/3;
  }
  .track {
    grid-template-columns: 40px 1fr 60px;
  }
  .track p {
    grid-column: 2/4;
  }
  .visuals {
    grid-template-columns: 1fr;
  }
  .visual-image {
    min-height: 90vh;
  }
  .timeline-grid {
    grid-template-columns: 1fr 1fr;
  }
  .credits-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: 28vw;
  }
  .hero h1 span {
    margin-left: 0;
  }
  .hero-copy {
    padding: 130px 5vw 40px;
  }
  .header-tag {
    display: none;
  }
  .intro-side {
    display: flex;
  }
  .intro-portrait img {
    height: 120vw;
    min-height: 0;
  }
  .intro-copy {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .era {
    grid-template-columns: 1fr;
  }
  .era img {
    height: 125vw;
  }
  .era-copy {
    grid-column: 1;
  }
  .album-head {
    display: block;
  }
  .track {
    grid-template-columns: 32px 1fr 48px;
    gap: 12px;
  }
  .track h3 {
    font-size: 1.7rem;
  }
  .track-list {
    overflow: hidden;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    align-items: flex-start;
    gap: 30px;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker-track,
  .scroll-cue {
    animation: none;
  }
}
