:root {
  --gray: #898989;
  --black: #111;
  --paper: #e7e5df;
  --white-line: rgba(255,255,255,.15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--gray); color: var(--black); font-family: Arial, Helvetica, sans-serif; letter-spacing: .08em; }
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.entry-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #0b0b0b;
  color: var(--paper);
  transition: opacity .8s ease, visibility .8s ease;
}
.entry-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.entry-inner { text-align: center; }
.entry-artist { margin: 0 0 24px; font-size: 9px; letter-spacing: .42em; }
.entry-screen h1 { margin: 0 0 42px; font-size: clamp(42px, 8vw, 112px); font-weight: 400; line-height: .9; letter-spacing: .18em; }
.entry-button {
  min-width: 190px;
  padding: 18px 30px;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .35em;
  transition: background .25s ease, color .25s ease;
}
.entry-button:hover, .entry-button:focus-visible { background: var(--paper); color: var(--black); }
.entry-note { margin: 16px 0 0; font-size: 7px; letter-spacing: .22em; opacity: .55; text-transform: uppercase; }

.site-header { position: absolute; z-index: 10; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; align-items: center; padding: 28px 34px; font-size: 10px; letter-spacing: .28em; }
.site-header nav { display: flex; gap: 34px; }
.brand { font-weight: 600; }
.hero, .secondary { min-height: 100svh; display: grid; place-items: center; overflow: hidden; background: var(--gray); }
.hero img, .secondary img { width: 100%; height: 100svh; display: block; object-fit: contain; object-position: center; }
.album { background: var(--black); color: var(--paper); padding: 120px clamp(24px,7vw,110px); }
.album-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(280px,1fr) minmax(300px,.88fr); gap: clamp(34px,5vw,74px); align-items: start; }
.album-cover { width: 100%; height: auto; display: block; }
.label { font-size: 9px; letter-spacing: .34em; margin: 0 0 25px; }
h1,h2 { font-size: clamp(42px,6vw,92px); line-height: .95; font-weight: 400; letter-spacing: .17em; margin: 0; }
.album-details { padding-top: 2px; justify-self: start; width: min(100%, 470px); }
.album-details h1 { font-size: clamp(34px,4.1vw,62px); letter-spacing: .14em; }
.price { font-size: 17px; letter-spacing: .18em; margin: 36px 0; }
.button { width: 100%; display: inline-flex; justify-content: center; align-items: center; padding: 20px 24px; cursor: pointer; letter-spacing: .25em; font-size: 10px; border: 1px solid; text-align: center; }
.button-light { background: var(--paper); color: var(--black); border-color: var(--paper); }
.button-light:hover { background: transparent; color: var(--paper); }
.release { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--white-line); font-size: 9px; line-height: 1.8; }
.countdown { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 28px; }
.countdown div { border-right: 1px solid var(--white-line); }
.countdown div:last-child { border-right: 0; }
.countdown strong { display: block; font-size: clamp(22px,3vw,40px); font-weight: 400; letter-spacing: .08em; }
.countdown span { display: block; margin-top: 6px; font-size: 7px; letter-spacing: .2em; opacity: .65; }
.tracklist { max-width: 1260px; margin: 100px auto 0; border-top: 1px solid var(--white-line); }
.track-heading,.track { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 20px; min-height: 54px; border-bottom: 1px solid var(--white-line); }
.track-heading { font-size: 8px; opacity: .7; }
.track-heading span:last-child { grid-column: 2/4; text-align: right; }
.track { width: 100%; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; font-size: 10px; letter-spacing: .16em; }
.track:hover { opacity: .55; }
.track span:last-child { font-size: 8px; opacity: .6; }
.track.active { opacity: .55; }
.track.static { cursor: default; }
.track.static:hover { opacity: 1; }
.store { background: var(--paper); color: var(--black); display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: end; padding: 110px clamp(24px,7vw,110px); }
.store h2 { font-size: clamp(38px,5vw,76px); }
.product-type { font-size: 10px; margin: 24px 0 0; }
.delivery-copy { max-width: 680px; margin: 0; font-size: 10px; line-height: 1.8; letter-spacing: .06em; opacity: .72; }
.button-dark { background: var(--black); color: var(--paper); border-color: var(--black); }
.button-dark:hover { background: transparent; color: var(--black); }
footer { background: var(--black); color: var(--paper); padding: 30px 35px; display: flex; justify-content: space-between; align-items: center; gap: 28px; font-size: 8px; letter-spacing: .22em; }
.footer-right { display: flex; align-items: center; gap: 24px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.manager-logo { width: 48px; height: 48px; object-fit: contain; display: block; flex: 0 0 auto; }

.policy-page { min-height: 100svh; background: var(--paper); color: var(--black); padding: 110px clamp(22px,8vw,130px) 80px; }
.policy-wrap { max-width: 860px; margin: 0 auto; }
.policy-kicker { margin: 0 0 20px; font-size: 9px; letter-spacing: .32em; }
.policy-page h1 { font-size: clamp(42px,7vw,88px); margin-bottom: 55px; }
.policy-page h2 { margin: 38px 0 12px; font-size: 15px; letter-spacing: .14em; }
.policy-page p, .policy-page li { font-size: 12px; line-height: 1.85; letter-spacing: .035em; }
.policy-page ul { padding-left: 20px; }
.policy-back { display: inline-block; margin-top: 45px; border-bottom: 1px solid; padding-bottom: 4px; font-size: 9px; letter-spacing: .22em; }

.thank-you-page { min-height: 100svh; display: grid; place-items: center; background: var(--black); color: var(--paper); padding: 35px; text-align: center; }
.thank-you-card { max-width: 760px; }
.thank-you-card .album-thumb { width: min(320px, 78vw); margin: 0 auto 38px; display: block; }
.thank-you-card h1 { font-size: clamp(38px,7vw,82px); margin-bottom: 28px; }
.thank-you-card p { font-size: 11px; line-height: 1.9; letter-spacing: .08em; opacity: .82; }
.thank-you-card .button { margin-top: 28px; max-width: 340px; }

@media (max-width:760px) {
  .site-header { padding: 21px 18px; font-size: 8px; }
  .site-header nav { gap: 14px; }
  .hero img,.secondary img { height: auto; max-height: 100svh; }
  .album { padding: 85px 20px; }
  .album-grid { grid-template-columns: 1fr; gap: 55px; }
  h1 { font-size: 42px; letter-spacing: .12em; }
  .countdown { gap: 8px; }
  .tracklist { margin-top: 70px; }
  .track-heading,.track { grid-template-columns: 45px 1fr auto; gap: 10px; }
  .store { grid-template-columns: 1fr; padding: 85px 20px; }
  footer { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-right { width: 100%; justify-content: space-between; align-items: flex-end; }
  .footer-links { justify-content: flex-start; gap: 16px 20px; }
  .manager-logo { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* CINEMATIC ENTER EXPERIENCE — homepage styles below this overlay remain untouched */
.entry-screen {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.025) 0%, rgba(255,255,255,0) 46%),
    #090909;
}
.entry-screen::before {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  animation: entry-grain .22s steps(2) infinite;
}
.entry-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(0,0,0,.34) 72%, rgba(0,0,0,.78) 100%);
}
.entry-inner { position: relative; z-index: 2; }
.entry-artist,
.entry-screen h1,
.entry-button {
  opacity: 0;
  transform: translateY(12px);
  animation: entry-rise .95s cubic-bezier(.22,.61,.36,1) forwards;
}
.entry-artist { animation-delay: .18s; }
.entry-screen h1 {
  animation-delay: .62s;
  text-shadow: 0 0 32px rgba(255,255,255,.045);
}
.entry-button {
  animation-delay: 1.12s;
  transition: transform .32s cubic-bezier(.22,.61,.36,1), background .32s ease, color .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.entry-button:hover,
.entry-button:focus-visible {
  transform: scale(1.035);
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 0 28px rgba(255,255,255,.08);
}
.entry-screen.is-leaving .entry-button {
  animation: none;
  opacity: 0;
  transform: translateY(8px) scale(.985);
  transition: opacity .35s ease, transform .35s ease;
}
.entry-screen.is-leaving .entry-screen-title,
.entry-screen.is-leaving h1 {
  animation: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .62s ease .2s, transform .62s ease .2s;
}
.entry-screen.is-leaving .entry-artist {
  animation: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .55s ease .34s, transform .55s ease .34s;
}
.entry-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .9s ease .55s, visibility .9s ease .55s;
}
@keyframes entry-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes entry-grain {
  0% { transform: translate3d(-2%, -1%, 0); }
  25% { transform: translate3d(1%, 2%, 0); }
  50% { transform: translate3d(2%, -2%, 0); }
  75% { transform: translate3d(-1%, 1%, 0); }
  100% { transform: translate3d(0, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .entry-screen::before { animation: none; }
  .entry-artist, .entry-screen h1, .entry-button { animation: none; opacity: 1; transform: none; }
}
