@font-face {
  font-family: "Caveat";
  src: url("assets/caveat-latin-variable.woff2?v=20260911") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #160e10;
  --ink-soft: #241417;
  --cream: #f3ead6;
  --paper: #fff9ec;
  --pearl: #e7dcc4;
  --pink: #ef75aa;
  --pink-hot: #ff8dbb;
  --pink-pale: #f8c8da;
  --pink-dark: #a92e62;
  --chocolate: #5d3427;
  --wine: #461524;
  --gold: #bd9b5f;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --display: "Bodoni 72", "Bodoni MT", "Didot", var(--serif);
  --sans: "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  --script: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  --page: min(1240px, calc(100vw - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.has-started { padding-bottom: 76px; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; }
::selection { background: var(--pink); color: var(--ink); }
:focus-visible { outline: 3px solid var(--pink-hot); outline-offset: 4px; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.ribbon-marquee {
  position: relative;
  z-index: 20;
  height: 36px;
  overflow: hidden;
  color: var(--wine);
  background: var(--pink);
  border-top: 1px solid rgba(255,255,255,.45);
  border-bottom: 1px solid #b3396f;
  box-shadow: inset 0 3px 0 rgba(255,255,255,.2), inset 0 -3px 0 rgba(110,22,61,.12);
}
.ribbon-marquee::before,
.ribbon-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(75,17,42,.35);
}
.ribbon-marquee::before { top: 5px; }
.ribbon-marquee::after { bottom: 5px; }
.ribbon-marquee__track {
  width: max-content;
  min-width: 200%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-inline: 24px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .28em;
  animation: marquee 24s linear infinite;
}
.ribbon-marquee__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 2px rgba(70,21,36,.25);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.site-header {
  position: absolute;
  z-index: 15;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--page);
  height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--cream);
  border-bottom: 1px solid rgba(243,234,214,.25);
}
.wordmark {
  justify-self: start;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -.045em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  color: var(--cream);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav a:hover { color: var(--pink-hot); }
.header-play {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--cream);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.header-play__dot {
  width: 28px;
  height: 28px;
  border: 1px solid var(--pink);
  border-radius: 50%;
  position: relative;
}
.header-play__dot::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  border-left: 7px solid var(--pink);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.hero {
  position: relative;
  min-height: min(940px, calc(100svh - 36px));
  padding: 160px max(24px, calc((100vw - 1240px) / 2)) 88px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(46px, 8vw, 116px);
  color: var(--cream);
  background:
    radial-gradient(circle at 74% 38%, rgba(239,117,170,.13), transparent 27%),
    radial-gradient(circle at 18% 70%, rgba(93,52,39,.28), transparent 33%),
    linear-gradient(137deg, #201114 0%, #100b0c 52%, #281316 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -260px;
  top: -250px;
  border: 1px solid rgba(248,200,218,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(248,200,218,.025), 0 0 0 110px rgba(248,200,218,.018);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  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='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero__copy, .hero__art { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--pink-pale);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--pink-dark); }
.eyebrow--pink { color: var(--pink-hot); }
.hero h1 {
  margin: 0;
  max-width: 650px;
  font-family: var(--display);
  font-size: clamp(4.9rem, 8.5vw, 9.4rem);
  font-weight: 400;
  letter-spacing: -.08em;
  line-height: .72;
  text-transform: uppercase;
}
.hero h1 span { display: block; margin-left: -.04em; }
.album-script {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 14px 0 0 6px;
  color: var(--pink-hot);
  font-family: var(--script);
  font-size: clamp(2.05rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
  transform: rotate(-4deg);
  text-shadow: 0 2px 18px rgba(239,117,170,.14);
}
.album-script em { color: var(--cream); font-weight: 500; }
.hero__intro {
  margin: 34px 0 0;
  color: rgba(243,234,214,.76);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
}
.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 0;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button svg { width: 18px; height: 18px; fill: currentColor; }
.button--pink {
  color: var(--wine);
  background: var(--pink);
  box-shadow: 7px 7px 0 var(--wine), inset 0 2px rgba(255,255,255,.25);
}
.button--pink:hover { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 var(--wine); background: var(--pink-hot); }
.text-link {
  color: var(--cream);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(243,234,214,.38);
  padding-bottom: 4px;
}
.text-link span { color: var(--pink); padding-left: 6px; }
.hero__meta {
  margin: 38px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(243,234,214,.5);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero__meta span { width: 26px; border-top: 1px solid var(--pink); }
.hero__art { justify-self: end; width: min(100%, 610px); padding: 24px 34px 70px 0; }
.album-frame {
  position: relative;
  transform: rotate(2.2deg);
  filter: drop-shadow(0 42px 50px rgba(0,0,0,.48));
}
.album-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -15px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(189,155,95,.65), 0 0 0 8px var(--paper), 0 0 0 9px rgba(239,117,170,.55);
}
.album-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.album-frame__ribbon {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  background: rgba(239,117,170,.88);
  box-shadow: inset 0 4px rgba(255,255,255,.2), inset 0 -4px rgba(70,21,36,.14), 0 7px 18px rgba(0,0,0,.2);
}
.album-frame__ribbon::before,
.album-frame__ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(70,21,36,.4);
}
.album-frame__ribbon::before { top: 7px; }
.album-frame__ribbon::after { bottom: 7px; }
.album-frame__ribbon--top { width: 42%; height: 32px; right: -21px; top: 28px; transform: rotate(3deg); }
.album-frame__ribbon--side { width: 38%; height: 28px; left: -28px; bottom: 42px; transform: rotate(-8deg); }
.puppy { position: absolute; pointer-events: none; user-select: none; }
.puppy--hero {
  z-index: 6;
  width: clamp(165px, 21vw, 300px);
  left: -105px;
  bottom: -42px;
  filter: drop-shadow(0 22px 22px rgba(0,0,0,.38));
}
.hero__kiss {
  position: absolute;
  z-index: 7;
  right: -20px;
  bottom: 30px;
  color: var(--pink);
  font-family: var(--script);
  font-size: 2.6rem;
  transform: rotate(-11deg);
}
.hero__scroll {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(243,234,214,.45);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll span { height: 45px; border-left: 1px solid var(--pink); }

.ribbon-rule { position: relative; height: 52px; background: var(--paper); overflow: hidden; }
.ribbon-rule span {
  position: absolute;
  left: -2%;
  right: -2%;
  top: 12px;
  height: 25px;
  background: var(--pink-pale);
  border-top: 1px dashed rgba(70,21,36,.35);
  border-bottom: 1px dashed rgba(70,21,36,.35);
  transform: rotate(-.6deg);
  box-shadow: inset 0 4px rgba(255,255,255,.35), 0 4px 12px rgba(70,21,36,.08);
}

.listen {
  position: relative;
  padding: 112px 24px 150px;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 18%, rgba(239,117,170,.15), transparent 26%),
    var(--paper);
}
.section-heading { width: min(750px, 100%); margin: 0 auto 56px; text-align: center; }
.section-heading h2,
.credits h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}
.section-heading > p:last-child {
  margin: 19px 0 0;
  color: rgba(22,14,16,.62);
  font-family: var(--serif);
  font-size: 1.16rem;
  font-style: italic;
}
.player-shell {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  color: var(--cream);
  background: var(--ink-soft);
  box-shadow: 18px 18px 0 var(--pink-pale), 0 38px 80px rgba(49,17,26,.22);
}
.player-shell::before {
  content: "";
  position: absolute;
  z-index: 4;
  left: -18px;
  right: -18px;
  top: -16px;
  height: 26px;
  background: var(--pink);
  border-top: 1px dashed rgba(70,21,36,.4);
  border-bottom: 1px dashed rgba(70,21,36,.4);
  transform: rotate(.65deg);
  box-shadow: inset 0 4px rgba(255,255,255,.24);
}
.player-now {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid rgba(243,234,214,.12);
  background: linear-gradient(155deg, #32171f, #190f11 64%);
}
.player-now__cover { position: relative; width: min(280px, 100%); margin: 0 auto; }
.player-now__cover img { width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,.42); }
.player-now__badge {
  position: absolute;
  right: -24px;
  bottom: -22px;
  width: 70px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(70,21,36,.25);
  border-radius: 50%;
  color: var(--wine);
  background: var(--pink);
  box-shadow: inset 0 0 0 4px var(--pink), inset 0 0 0 5px rgba(70,21,36,.32), 0 10px 22px rgba(0,0,0,.25);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(11deg);
}
.player-now__body { margin-top: 40px; text-align: center; }
.player-now__number {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.player-now h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}
.player-now__artist { margin: 10px 0 0; color: rgba(243,234,214,.55); font-size: .75rem; letter-spacing: .19em; text-transform: uppercase; }
.transport { margin: 28px auto 22px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.transport button { display: grid; place-items: center; border: 0; cursor: pointer; }
.transport svg { width: 22px; height: 22px; fill: currentColor; }
.transport__small { width: 40px; height: 40px; color: rgba(243,234,214,.75); background: transparent; }
.transport__small:hover { color: var(--pink); }
.transport__play {
  width: 62px;
  height: 62px;
  border-radius: 50% !important;
  color: var(--wine);
  background: var(--pink) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.3), inset 0 2px rgba(255,255,255,.3);
  transition: transform .2s ease, background .2s ease;
}
.transport__play:hover { transform: scale(1.06); background: var(--pink-hot) !important; }
.icon-pause { display: none; }
.is-playing .icon-play { display: none; }
.is-playing .icon-pause { display: block; }
.progress-wrap { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; gap: 10px; }
.progress-wrap span { color: rgba(243,234,214,.52); font-size: .67rem; font-variant-numeric: tabular-nums; }
#progress {
  width: 100%;
  height: 3px;
  margin: 0;
  accent-color: var(--pink);
  cursor: pointer;
}
.tracklist { margin: 0; padding: 26px 36px; list-style: none; align-self: center; }
.track { border-bottom: 1px solid rgba(243,234,214,.12); }
.track:last-child { border-bottom: 0; }
.track__button {
  width: 100%;
  min-height: 74px;
  padding: 0;
  display: grid;
  grid-template-columns: 34px 23px 1fr auto 48px;
  align-items: center;
  gap: 13px;
  color: var(--cream);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.track__number { color: rgba(243,234,214,.38); font-size: .67rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.track__title { font-family: var(--serif); font-size: 1.18rem; transition: color .2s ease, transform .2s ease; }
.track__duration { color: rgba(243,234,214,.4); font-size: .69rem; font-variant-numeric: tabular-nums; }
.track__action { color: var(--pink); font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-align: right; text-transform: uppercase; opacity: 0; transition: opacity .2s ease; }
.track__button:hover .track__title { color: var(--pink-pale); transform: translateX(3px); }
.track__button:hover .track__action { opacity: 1; }
.track__pulse { height: 18px; display: flex; align-items: center; justify-content: center; gap: 3px; opacity: 0; }
.track__pulse i { width: 2px; height: 6px; background: var(--pink); }
.track.is-current .track__pulse { opacity: 1; }
.track.is-current .track__title { color: var(--pink); }
.track.is-current.is-playing .track__pulse i:nth-child(1) { animation: pulse .8s ease-in-out infinite alternate; }
.track.is-current.is-playing .track__pulse i:nth-child(2) { animation: pulse .62s ease-in-out -.2s infinite alternate; }
.track.is-current.is-playing .track__pulse i:nth-child(3) { animation: pulse .74s ease-in-out -.4s infinite alternate; }
@keyframes pulse { to { height: 17px; } }
.puppy--player {
  z-index: 7;
  width: clamp(240px, 32vw, 430px);
  right: -155px;
  bottom: -132px;
  filter: drop-shadow(0 20px 18px rgba(43,15,24,.25));
}

.cleo {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  color: var(--cream);
  background: var(--ink);
}
.cleo__photo { position: relative; min-height: 700px; overflow: hidden; }
.cleo__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(22,14,16,.82) 100%), linear-gradient(0deg, rgba(22,14,16,.3), transparent 40%);
}
.cleo__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; filter: saturate(.77) contrast(1.04); }
.cleo__photo-ribbon {
  position: absolute;
  z-index: 3;
  left: -5%;
  right: -5%;
  bottom: 58px;
  height: 34px;
  background: rgba(239,117,170,.92);
  border-top: 1px dashed rgba(70,21,36,.42);
  border-bottom: 1px dashed rgba(70,21,36,.42);
  box-shadow: inset 0 5px rgba(255,255,255,.21), 0 10px 30px rgba(0,0,0,.25);
  transform: rotate(2.3deg);
}
.cleo__copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: 90px clamp(34px, 7vw, 110px) 90px clamp(34px, 3vw, 62px);
  margin-left: -1px;
}
.cleo__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 6.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}
.cleo__lead {
  max-width: 30rem;
  margin: 34px 0 0;
  color: rgba(243,234,214,.68);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.65;
}
.pearl-line { margin: 40px 0 28px; display: flex; gap: 8px; }
.pearl-line i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--pearl) 55%, #9f9073);
  box-shadow: 0 2px 3px rgba(0,0,0,.45);
}
.cleo__signature { margin: 0; color: var(--pink); font-family: var(--script); font-size: 2.8rem; transform: rotate(-5deg); transform-origin: left center; }

.credits {
  position: relative;
  min-height: 610px;
  padding: 110px 24px 190px;
  background:
    radial-gradient(circle at 7% 95%, rgba(93,52,39,.18), transparent 24%),
    linear-gradient(180deg, #fff9ec, #f2dfd6);
  overflow: hidden;
}
.credits::before {
  content: "";
  position: absolute;
  top: 44px;
  left: -5%;
  width: 42%;
  height: 26px;
  background: var(--pink);
  border-top: 1px dashed rgba(70,21,36,.4);
  border-bottom: 1px dashed rgba(70,21,36,.4);
  transform: rotate(-4deg);
}
.credits__inner { position: relative; z-index: 2; width: min(840px, 100%); margin: 0 auto; text-align: center; }
.credits h2 { font-size: clamp(3rem, 6vw, 5.8rem); }
.credits dl { margin: 54px auto 0; max-width: 760px; text-align: left; }
.credits dl div { display: grid; grid-template-columns: 145px 1fr; gap: 22px; padding: 17px 0; border-top: 1px solid rgba(22,14,16,.17); }
.credits dl div:last-child { border-bottom: 1px solid rgba(22,14,16,.17); }
.credits dt { color: var(--pink-dark); font-size: .67rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.credits dd { margin: 0; font-family: var(--serif); font-size: 1.02rem; }
.puppy--trio {
  z-index: 1;
  width: clamp(390px, 58vw, 770px);
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 20px rgba(50,20,29,.22));
}

.footer {
  position: relative;
  z-index: 3;
  padding: 76px 24px 54px;
  color: var(--cream);
  background: var(--ink);
  text-align: center;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12px;
  background: var(--pink);
  border-top: 1px dashed rgba(70,21,36,.38);
  border-bottom: 1px dashed rgba(70,21,36,.38);
}
.footer__name { font-family: var(--display); font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -.055em; line-height: 1; text-transform: uppercase; }
.footer__name em { color: var(--pink); font-family: var(--script); font-weight: 600; text-transform: none; }
.footer > p { margin: 14px 0 0; color: rgba(243,234,214,.58); font-family: var(--serif); font-size: 1.02rem; font-style: italic; }
.footer__rule { width: 80px; margin: 30px auto 20px; border-top: 1px solid var(--pink); }
.footer .footer__legal { font-family: var(--sans); font-size: .64rem; font-style: normal; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.mini-player {
  position: fixed;
  z-index: 100;
  left: 16px;
  right: 16px;
  bottom: 14px;
  max-width: 720px;
  min-height: 64px;
  margin: 0 auto;
  padding: 9px 14px 9px 10px;
  display: grid;
  grid-template-columns: 44px minmax(110px, auto) 1fr 36px;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  background: rgba(26,15,17,.96);
  border: 1px solid rgba(239,117,170,.46);
  box-shadow: 0 18px 55px rgba(0,0,0,.42);
  transform: translateY(115px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
  backdrop-filter: blur(15px);
}
body.has-started .mini-player {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mini-player button { display: grid; place-items: center; border: 0; cursor: pointer; }
.mini-player svg { width: 19px; height: 19px; fill: currentColor; }
.mini-player__play { width: 42px; height: 42px; color: var(--wine); background: var(--pink); border-radius: 50%; }
.mini-player__text { min-width: 0; line-height: 1.2; }
.mini-player__text strong { display: block; overflow: hidden; font-family: var(--serif); font-size: .97rem; text-overflow: ellipsis; white-space: nowrap; }
.mini-player__text span { color: rgba(243,234,214,.5); font-size: .56rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.mini-player__line { height: 2px; overflow: hidden; background: rgba(243,234,214,.14); }
.mini-player__line i { display: block; width: 0; height: 100%; background: var(--pink); }
.mini-player__next { width: 36px; height: 36px; color: rgba(243,234,214,.72); background: transparent; }

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 880px); }
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 175px; }
  .hero h1 { font-size: clamp(4.3rem, 10vw, 7rem); }
  .hero__art { padding-right: 12px; }
  .puppy--hero { left: -70px; }
  .player-shell { grid-template-columns: .78fr 1.22fr; }
  .tracklist { padding-inline: 26px; }
  .track__button { grid-template-columns: 28px 20px 1fr auto; }
  .track__action { display: none; }
  .cleo { grid-template-columns: 1fr; }
  .cleo__photo { min-height: 580px; }
  .cleo__photo::after { background: linear-gradient(0deg, rgba(22,14,16,.78), transparent 44%); }
  .cleo__copy { margin-top: -160px; padding: 70px 34px 90px; text-align: center; }
  .cleo__lead { margin-inline: auto; }
  .pearl-line { justify-content: center; }
  .cleo__signature { transform-origin: center; }
}

@media (max-width: 720px) {
  body.has-started { padding-bottom: 72px; }
  .ribbon-marquee { height: 32px; }
  .site-header { top: 32px; height: 78px; }
  .wordmark { font-size: 1.23rem; }
  .header-play { font-size: 0; }
  .header-play__dot { width: 34px; height: 34px; }
  .header-play__dot::after { left: 13px; top: 10px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 62px;
    padding: 145px 24px 88px;
    text-align: center;
  }
  .hero__copy { order: 1; }
  .hero__art { order: 2; width: min(92vw, 560px); justify-self: center; padding: 14px 10px 60px 24px; }
  .eyebrow { letter-spacing: .24em; }
  .hero h1 { font-size: clamp(4.45rem, 22vw, 8rem); }
  .album-script { margin: 20px auto 0; font-size: clamp(2.25rem, 11vw, 3.8rem); }
  .hero__intro { margin-top: 28px; }
  .hero__actions { justify-content: center; }
  .hero__meta { justify-content: center; }
  .hero__scroll { display: none; }
  .puppy--hero { width: 44vw; min-width: 165px; left: -18px; bottom: -46px; }
  .hero__kiss { right: 10px; }
  .listen { padding: 90px 16px 150px; }
  .section-heading { margin-bottom: 44px; }
  .player-shell { display: block; box-shadow: 10px 12px 0 var(--pink-pale), 0 32px 65px rgba(49,17,26,.18); }
  .player-now { border-right: 0; border-bottom: 1px solid rgba(243,234,214,.12); }
  .player-now__cover { width: min(270px, 78vw); }
  .tracklist { padding: 16px 22px 22px; }
  .track__button { min-height: 67px; grid-template-columns: 28px 19px 1fr auto; gap: 10px; }
  .track__title { font-size: 1.08rem; }
  .puppy--player { width: min(84vw, 390px); right: -90px; bottom: -124px; }
  .cleo__photo { min-height: 540px; }
  .cleo__photo img { object-position: 53% center; }
  .cleo__copy h2 { font-size: clamp(3.35rem, 16vw, 6rem); }
  .credits { padding: 90px 20px 175px; }
  .credits dl div { grid-template-columns: 1fr; gap: 6px; }
  .puppy--trio { width: min(102vw, 650px); }
  .mini-player { left: 8px; right: 8px; bottom: 8px; grid-template-columns: 42px minmax(88px, 1fr) 36px; gap: 10px; }
  .mini-player__line { display: none; }
}

@media (max-width: 430px) {
  .hero__actions { display: grid; justify-items: center; }
  .button { width: 100%; max-width: 330px; }
  .album-frame__ribbon--top { right: -10px; }
  .player-now { padding: 34px 24px 30px; }
  .tracklist { padding-inline: 17px; }
  .track__button { grid-template-columns: 25px 17px 1fr auto; }
  .track__number { font-size: .61rem; }
  .track__duration { font-size: .63rem; }
  .cleo__photo { min-height: 485px; }
  .cleo__copy { padding-inline: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .ribbon-marquee__track { animation: none; }
}

/* ==================== TACTILE PUPPY-PILE REVISION ==================== */
.ribbon-marquee,
.album-frame__ribbon,
.puppy--hero,
.puppy--player,
.puppy--trio { display: none; }

.site-header {
  top: 0;
  height: 88px;
  border-bottom-color: rgba(243,234,214,.34);
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}

.hero {
  isolation: isolate;
  min-height: 760px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 72px;
  grid-template-columns: minmax(0, .94fr) minmax(350px, .7fr);
  gap: clamp(46px, 7vw, 96px);
  background: #130b0d;
}
.hero::before { display: none; }
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,7,8,.89) 0%, rgba(12,7,8,.62) 44%, rgba(12,7,8,.25) 68%, rgba(12,7,8,.5) 100%),
    linear-gradient(0deg, rgba(12,7,8,.72) 0%, transparent 36%, rgba(12,7,8,.34) 100%);
  pointer-events: none;
}
.hero__puppy-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 52%;
  filter: brightness(.63) saturate(.86) contrast(1.06);
}
.hero__grain { z-index: 2; opacity: .1; }
.hero__copy,
.hero__art { z-index: 3; }
.hero__copy {
  max-width: 610px;
  padding: 32px 36px 34px;
  background: linear-gradient(105deg, rgba(15,8,10,.72), rgba(15,8,10,.36));
  border-left: 1px solid rgba(239,117,170,.62);
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
  backdrop-filter: blur(2px);
}
.hero h1 { font-size: clamp(4.5rem, 7.5vw, 7.8rem); }
.album-script { font-size: clamp(2.15rem, 3.6vw, 3.65rem); }
.hero__intro { margin-top: 27px; color: rgba(255,249,236,.86); text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.hero__actions { margin-top: 29px; }
.hero__meta { margin-top: 32px; }
.hero__art {
  width: min(42vw, 465px);
  padding: 0;
  align-self: center;
}
.album-frame { transform: rotate(1.2deg); transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s ease; }
.hero__art:hover .album-frame { transform: rotate(-.4deg) translateY(-5px); filter: drop-shadow(0 50px 56px rgba(0,0,0,.52)); }
.album-frame::before { inset: -11px; box-shadow: 0 0 0 1px rgba(189,155,95,.65), 0 0 0 6px var(--paper), 0 0 0 7px rgba(239,117,170,.42); }
.album-frame img:first-child { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.album-frame__bow {
  position: absolute;
  z-index: 6;
  width: 58%;
  max-width: none;
  right: -29%;
  top: -24%;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.38));
  transform: rotate(7deg);
  pointer-events: none;
}
.hero__kiss { right: -44px; bottom: -51px; }
.hero__scroll { display: none; }

.ribbon-rule {
  height: 104px;
  display: grid;
  place-items: center;
  background: var(--paper);
  overflow: hidden;
}
.ribbon-rule span { display: none; }
.ribbon-rule img {
  width: min(1700px, 118vw);
  max-width: none;
  transform: rotate(-1.4deg);
  filter: drop-shadow(0 9px 12px rgba(70,21,36,.2));
}

.listen { padding: 74px 24px 116px; }
.section-heading { margin-bottom: 42px; }
.section-heading h2 { font-size: clamp(3.1rem, 5.7vw, 5.8rem); }
.section-heading > p:last-child { margin-top: 14px; }
.player-shell {
  width: min(960px, 100%);
  grid-template-columns: 350px 1fr;
  box-shadow: 14px 14px 0 var(--pink-pale), 0 34px 72px rgba(49,17,26,.2);
}
.player-shell::before { display: none; }
.player-ribbon {
  position: absolute;
  z-index: 7;
  width: 110%;
  max-width: none;
  left: -5%;
  top: -75px;
  transform: rotate(.7deg);
  filter: drop-shadow(0 9px 10px rgba(0,0,0,.24));
  pointer-events: none;
}
.player-now { padding: 36px 34px 32px; }
.player-now__cover { width: min(245px, 100%); }
.player-now__cover img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.player-now__body { margin-top: 24px; }
.transport { margin: 22px auto 17px; }
.tracklist { padding: 28px 34px; }
.track__button { min-height: 64px; }

.cleo__photo-ribbon {
  position: absolute;
  z-index: 3;
  left: -8%;
  right: auto;
  bottom: -54px;
  width: 116%;
  height: auto;
  max-width: none;
  background: none;
  border: 0;
  box-shadow: none;
  transform: rotate(1deg);
  filter: drop-shadow(0 12px 15px rgba(0,0,0,.35));
}

.credits {
  min-height: 0;
  padding: 94px 24px 104px;
  overflow: visible;
}
.credits::before { display: none; }
.credits__inner { width: min(850px, 100%); }
.credits h2 { font-size: clamp(3rem, 5.5vw, 5.3rem); }
.credits dl { margin-top: 42px; }

.take-one {
  position: relative;
  padding: 126px 24px 138px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 15%, rgba(239,117,170,.12), transparent 31%),
    linear-gradient(145deg, #231215, #10090b 72%);
  overflow: hidden;
}
.take-one__ribbon {
  position: absolute;
  z-index: 2;
  width: min(1900px, 125vw);
  max-width: none;
  left: 50%;
  top: -96px;
  transform: translateX(-50%) rotate(-1.2deg);
  filter: drop-shadow(0 13px 16px rgba(0,0,0,.42));
  pointer-events: none;
}
.lost-notice {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 66px 52px 0;
  background:
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,0)),
    var(--cream);
  border: 1px solid rgba(189,155,95,.7);
  box-shadow: 0 30px 80px rgba(0,0,0,.43), inset 0 0 0 7px rgba(255,249,236,.55);
  text-align: center;
}
.lost-notice::before,
.lost-notice::after {
  content: "";
  position: absolute;
  top: 17px;
  width: 22px;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(#e1c47d, #8e6e30);
  box-shadow: 0 2px 3px rgba(0,0,0,.24);
}
.lost-notice::before { left: 26px; transform: rotate(-2deg); }
.lost-notice::after { right: 26px; transform: rotate(2deg); }
.lost-notice__bow {
  position: absolute;
  z-index: 5;
  width: 250px;
  max-width: none;
  right: -116px;
  top: -105px;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.28));
  transform: rotate(13deg);
  pointer-events: none;
}
.lost-notice h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}
.lost-notice__copy {
  margin: 18px 0 0;
  color: rgba(22,14,16,.64);
  font-family: var(--serif);
  font-size: 1.13rem;
  font-style: italic;
}
.tab-result {
  min-height: 78px;
  margin: 32px auto 0;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: rgba(22,14,16,.46);
  border-top: 1px solid rgba(22,14,16,.12);
  border-bottom: 1px solid rgba(22,14,16,.12);
  transition: color .35s ease, background .35s ease;
}
.tab-result::before {
  content: "Your song is tucked under a tab";
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}
.tab-result > * {
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease;
}
.tab-result.is-visible::before { display: none; }
.tab-result.is-visible > * { visibility: visible; opacity: 1; }
.tab-result.is-visible { color: var(--ink); background: rgba(239,117,170,.11); }
.tab-result > span { font-size: .64rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.tab-result strong { font-family: var(--serif); font-size: 1.23rem; font-weight: 600; }
.tab-result__play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  color: var(--cream);
  background: var(--wine);
  border: 0;
  cursor: pointer;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .22;
  pointer-events: none;
  transition: opacity .35s ease, transform .2s ease, background .2s ease;
}
.tab-result.is-visible .tab-result__play { opacity: 1; pointer-events: auto; }
.tab-result__play:hover { background: var(--pink-dark); transform: translateY(-1px); }
.tab-result__play svg { width: 14px; height: 14px; fill: currentColor; }
.take-label {
  margin: 30px 0 0;
  color: var(--pink-dark);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.tear-tabs {
  width: calc(100% + 104px);
  margin: 11px 0 0 -52px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-top: 1px dashed rgba(70,21,36,.45);
}
.tear-tab {
  min-width: 0;
  height: 112px;
  display: grid;
  place-items: center;
  color: var(--wine);
  background: linear-gradient(90deg, #f4e6d2, #fff7e8 48%, #edddc5);
  border: 0;
  border-left: 1px dashed rgba(70,21,36,.38);
  cursor: grab;
  transform-origin: top center;
  transition: filter .2s ease, transform .2s ease;
}
.tear-tab:first-child { border-left: 0; }
.tear-tab:hover { filter: brightness(1.04); transform: translateY(4px); }
.tear-tab:active { cursor: grabbing; }
.tear-tab span {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.tear-tab.is-torn { animation: tear-away .72s cubic-bezier(.45,.02,.67,.98) forwards; pointer-events: none; }
@keyframes tear-away {
  0% { transform: translateY(2px) rotate(0); opacity: 1; }
  42% { transform: translateY(28px) rotate(5deg); opacity: 1; }
  100% { transform: translateY(150px) rotate(14deg); opacity: 0; }
}

.footer { padding: 58px 24px 46px; border-top: 1px solid rgba(239,117,170,.45); }
.footer::before { display: none; }
.footer__name { font-size: clamp(2.8rem, 5vw, 4.9rem); }

@media (max-width: 980px) {
  .site-header { top: 0; }
  .hero {
    min-height: 650px;
    grid-template-columns: minmax(0, .92fr) minmax(300px, .68fr);
    gap: 38px;
    padding-top: 116px;
  }
  .hero__copy { padding: 28px 30px; }
  .hero h1 { font-size: clamp(4rem, 9vw, 6.3rem); }
  .hero__art { width: min(42vw, 390px); padding: 0; }
  .player-shell { grid-template-columns: 330px 1fr; }
  .player-now { padding-inline: 34px; }
  .player-ribbon { top: -60px; }
}

@media (max-width: 720px) {
  .site-header { top: 0; height: 74px; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 104px 20px 72px;
    text-align: center;
  }
  .hero::after {
    background: linear-gradient(180deg, rgba(12,7,8,.72), rgba(12,7,8,.55) 42%, rgba(12,7,8,.8));
  }
  .hero__puppy-bg { object-position: 52% center; filter: brightness(.55) saturate(.86); }
  .hero__copy {
    order: 1;
    max-width: 520px;
    margin: 0 auto;
    padding: 27px 20px 30px;
    border-left: 0;
    border-top: 1px solid rgba(239,117,170,.6);
    background: rgba(15,8,10,.58);
  }
  .hero__art { order: 2; width: min(76vw, 390px); padding: 0; }
  .album-frame__bow { width: 54%; right: -25%; top: -23%; }
  .hero__kiss { right: -17px; bottom: -47px; }
  .ribbon-rule { height: 84px; }
  .ribbon-rule img { width: 170vw; }
  .listen { padding: 68px 16px 94px; }
  .section-heading { margin-bottom: 38px; }
  .player-shell { display: block; }
  .player-ribbon { width: 150%; left: -25%; top: -62px; }
  .player-now { padding: 38px 24px 31px; }
  .player-now__cover { width: min(235px, 68vw); }
  .tracklist { padding: 15px 20px 22px; }
  .track__button { min-height: 62px; }
  .cleo__photo-ribbon { width: 165%; left: -30%; bottom: -48px; }
  .credits { padding: 76px 20px 82px; }
  .credits dl { margin-top: 34px; }
  .take-one { padding: 104px 16px 100px; }
  .take-one__ribbon { width: 190vw; top: -86px; }
  .lost-notice { padding: 58px 20px 0; }
  .lost-notice__bow { width: 190px; right: -74px; top: -80px; }
  .tab-result { min-height: 112px; flex-wrap: wrap; gap: 8px 12px; }
  .tear-tabs { width: calc(100% + 40px); margin-left: -20px; }
  .tear-tab { height: 100px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: clamp(4.15rem, 21vw, 6.4rem); }
  .album-script { font-size: clamp(2.2rem, 10.5vw, 3rem); }
  .hero__actions { display: grid; justify-items: center; }
  .tracklist { padding-inline: 14px; }
  .lost-notice h2 { font-size: 3.55rem; }
  .tear-tab { height: 88px; }
  .tear-tab span { font-size: .56rem; letter-spacing: .13em; }
}

@media (prefers-reduced-motion: reduce) {
  .tear-tab.is-torn { opacity: 0; }
}

/* ==================== QUIETER RIBBONS + BILLBOARD REVISION ==================== */
.hero::after {
  background:
    linear-gradient(90deg, rgba(12,7,8,.68) 0%, rgba(12,7,8,.46) 38%, rgba(12,7,8,.1) 61%, rgba(12,7,8,.22) 100%),
    linear-gradient(0deg, rgba(12,7,8,.46) 0%, transparent 45%, rgba(12,7,8,.2) 100%);
}
.hero__puppy-bg {
  filter: brightness(.86) saturate(.92) contrast(1.02);
}
.hero__grain { opacity: .07; }
.hero__copy {
  background: linear-gradient(105deg, rgba(15,8,10,.66), rgba(15,8,10,.28));
  box-shadow: 0 24px 70px rgba(0,0,0,.1);
}
.album-frame__bow {
  width: 110%;
  height: 110%;
  right: -14%;
  top: -10%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 9px 9px rgba(0,0,0,.3));
}
.hero__kiss {
  right: -38px;
  bottom: -58px;
  font-family: var(--script);
  font-size: clamp(3.15rem, 4vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
  -webkit-text-stroke: .25px currentColor;
  text-shadow: 0 3px 13px rgba(0,0,0,.42);
  transform: rotate(-9deg);
}

.ribbon-rule {
  height: 80px;
  overflow: hidden;
}
.ribbon-rule img {
  width: min(980px, 82vw);
  max-width: 82vw;
  height: auto;
  transform: none;
  filter: drop-shadow(0 5px 7px rgba(70,21,36,.18));
}
.player-ribbon { display: none; }
.listen { padding-top: 68px; }

.cleo__photo-ribbon {
  left: 14%;
  bottom: -16px;
  width: 72%;
  max-height: 94px;
  object-fit: contain;
  transform: rotate(-.7deg);
  filter: drop-shadow(0 7px 8px rgba(0,0,0,.32));
}
.cleo__signature {
  font-family: var(--script);
  font-size: clamp(3rem, 4.4vw, 4.35rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
  -webkit-text-stroke: .2px currentColor;
  transform: rotate(-4deg);
}

.take-one {
  padding: 88px 24px 116px;
  background:
    radial-gradient(circle at 17% 22%, rgba(255,255,255,.025), transparent 18%),
    linear-gradient(145deg, #291819, #120b0d 72%);
}
.take-one__ribbon,
.lost-notice__bow { display: none; }
.take-one__board {
  position: relative;
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) clamp(20px, 4vw, 54px) clamp(62px, 6vw, 82px);
  background:
    linear-gradient(92deg, rgba(255,255,255,.025), transparent 22%, rgba(0,0,0,.12) 76%, transparent),
    #3a241f;
  border: 10px solid #241411;
  box-shadow:
    inset 0 0 0 2px rgba(189,155,95,.2),
    inset 0 0 40px rgba(0,0,0,.44),
    0 34px 76px rgba(0,0,0,.42);
}
.take-one__board::before,
.take-one__board::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(248,200,218,.18);
}
.take-one__board::before { top: 18px; }
.take-one__board::after { bottom: 18px; }
.lost-notice {
  width: min(720px, 100%);
  padding: 58px 52px 0;
  background:
    linear-gradient(95deg, rgba(128,78,42,.025), transparent 36%, rgba(255,255,255,.16) 66%, transparent),
    #fff7e6;
  border: 0;
  box-shadow:
    1px 2px 0 rgba(255,255,255,.55),
    0 18px 28px rgba(0,0,0,.31),
    0 3px 7px rgba(0,0,0,.2);
  transform: rotate(-.3deg);
}
.lost-notice::before,
.lost-notice::after {
  top: 16px;
  width: 20px;
  height: 4px;
}
.lost-notice h2 { font-size: clamp(3.2rem, 6.3vw, 5.55rem); }
.lost-notice__copy { color: rgba(22,14,16,.69); }
.tab-result {
  margin-top: 28px;
  background: rgba(231,220,196,.3);
  border-color: rgba(70,21,36,.15);
}
.tab-result.is-visible { background: rgba(239,117,170,.1); }
.take-label { margin-top: 27px; }
.tear-tabs {
  border-top: 1px dashed rgba(70,21,36,.5);
  filter: drop-shadow(0 7px 6px rgba(34,18,15,.14));
}
.tear-tab {
  height: 126px;
  position: relative;
  background: linear-gradient(90deg, #eddec5 0%, #fff8e9 38%, #f5e8d2 76%, #ead9be 100%);
  border-left-color: rgba(70,21,36,.43);
  box-shadow: inset 0 -8px 13px rgba(111,73,45,.035);
}
.tear-tab:nth-child(2n) { background: linear-gradient(90deg, #f3e5cf, #fff9eb 52%, #ead9bd); }
.tear-tab:nth-child(3n) { transform: translateY(2px) rotate(.35deg); }
.tear-tab:nth-child(4n) { transform: translateY(1px) rotate(-.28deg); }
.tear-tab:hover { filter: brightness(1.025); transform: translateY(6px) rotate(0); }
.tear-tab span {
  color: rgba(70,21,36,.88);
  font-size: .64rem;
}

@media (max-width: 980px) {
  .hero::after {
    background:
      linear-gradient(90deg, rgba(12,7,8,.64), rgba(12,7,8,.25) 55%, rgba(12,7,8,.18)),
      linear-gradient(0deg, rgba(12,7,8,.42), transparent 52%);
  }
  .album-frame__bow { width: 110%; height: 110%; right: -14%; top: -10%; }
}

@media (max-width: 720px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(12,7,8,.56), rgba(12,7,8,.24) 42%, rgba(12,7,8,.58));
  }
  .hero__puppy-bg { filter: brightness(.8) saturate(.9) contrast(1.02); }
  .hero__copy { background: rgba(15,8,10,.47); }
  .album-frame__bow { width: 110%; height: 110%; right: -14%; top: -10%; }
  .hero__kiss { right: -6px; bottom: -56px; font-size: 3.25rem; }
  .ribbon-rule { height: 58px; }
  .ribbon-rule img { width: 90vw; max-width: 90vw; height: auto; }
  .player-ribbon { display: none; }
  .cleo__photo-ribbon { width: 82%; left: 9%; bottom: -11px; max-height: 82px; }
  .cleo__signature { font-size: 3.2rem; }
  .take-one { padding: 66px 12px 82px; }
  .take-one__board { padding: 28px 12px 52px; border-width: 7px; }
  .lost-notice { padding: 50px 20px 0; }
  .tear-tabs { width: calc(100% + 40px); margin-left: -20px; }
  .tear-tab { height: 106px; }
}

@media (max-width: 430px) {
  .take-one { padding-inline: 8px; }
  .take-one__board { padding-inline: 8px; border-width: 5px; }
  .lost-notice { padding-inline: 14px; }
  .tear-tabs { width: calc(100% + 28px); margin-left: -14px; }
  .tear-tab { height: 94px; }
}

/* ==================== TACTILE PAPER + DUSTY ROSE REVISION ==================== */
.album-frame__bow {
  right: -14%;
  top: -18%;
}

.ribbon-rule {
  height: 88px;
  overflow: visible;
}
.ribbon-rule img {
  width: min(1080px, 86vw);
  max-width: 86vw;
  height: auto;
  transform: none;
  filter: drop-shadow(0 6px 8px rgba(70,21,36,.2));
}

.cleo__photo > img.cleo__photo-ribbon {
  left: 14%;
  bottom: -12px;
  width: 72%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: rotate(-.35deg);
  filter: drop-shadow(0 7px 8px rgba(0,0,0,.32));
}

.take-one {
  padding: 96px 24px 126px;
  background:
    radial-gradient(circle at 50% 12%, rgba(239,117,170,.075), transparent 31%),
    #120b0d;
}
.take-one__board {
  width: min(1000px, 100%);
  padding: clamp(72px, 7vw, 92px) clamp(42px, 7vw, 84px) clamp(92px, 8vw, 112px);
  background-color: #332018;
  background-image: url("assets/billboard-board-v4.webp");
  background-position: center;
  background-size: cover;
  border: 0;
  box-shadow:
    0 42px 90px rgba(0,0,0,.52),
    0 10px 22px rgba(0,0,0,.34);
}
.take-one__board::before,
.take-one__board::after {
  display: none;
}
.lost-notice {
  width: min(760px, 100%);
  padding: 60px 52px 0;
  background-color: #f7efdf;
  background-image:
    linear-gradient(96deg, rgba(100,64,31,.035), transparent 24%, rgba(255,255,255,.09) 61%, rgba(92,54,24,.025)),
    url("assets/paper-sheet-v4.webp");
  background-position: center, center;
  background-size: cover, cover;
  border: 0;
  box-shadow:
    0 2px 1px rgba(255,255,255,.52),
    2px 7px 8px rgba(18,8,6,.26),
    9px 24px 34px rgba(18,8,6,.33),
    -3px 15px 25px rgba(18,8,6,.13);
  transform: rotate(-.45deg);
}
.lost-notice::before,
.lost-notice::after {
  top: 18px;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(70,44,14,.75);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff2ba 0 9%, #d4aa53 20%, #8b6027 64%, #4d3015 100%);
  box-shadow:
    0 2px 3px rgba(0,0,0,.38),
    inset -2px -2px 2px rgba(55,29,7,.33),
    inset 2px 2px 2px rgba(255,244,187,.36);
}
.lost-notice::before { left: 27px; transform: rotate(-3deg); }
.lost-notice::after { right: 27px; transform: rotate(4deg); }
.tab-result {
  background: rgba(246,224,214,.4);
  border-color: rgba(70,21,36,.16);
}
.tab-result.is-visible { background: rgba(239,117,170,.115); }
.tear-tabs {
  border-top: 1px dashed rgba(70,21,36,.54);
  filter: drop-shadow(0 9px 7px rgba(34,18,15,.22));
}
.tear-tab,
.tear-tab:nth-child(2n) {
  height: 132px;
  background-color: #f7efdf;
  background-image:
    linear-gradient(90deg, rgba(84,50,24,.065), transparent 16%, rgba(255,255,255,.12) 53%, rgba(88,52,24,.055)),
    url("assets/paper-sheet-v4.webp");
  background-position: center, center;
  background-size: cover, 560px auto;
  border-left-color: rgba(70,21,36,.46);
  box-shadow:
    inset 0 -7px 10px rgba(79,50,27,.05),
    1px 3px 3px rgba(37,20,12,.07);
  clip-path: polygon(0 0, 100% 0, 100% 96%, 93% 97.3%, 84% 95.8%, 74% 98%, 64% 96%, 53% 98.4%, 42% 96.2%, 31% 97.7%, 20% 95.8%, 9% 97.5%, 0 96.3%);
}
.tear-tab:nth-child(2n) { background-position: center, 18% center; }
.tear-tab:nth-child(3n) { background-position: center, 62% center; }
.tear-tab:nth-child(4n) { background-position: center, 84% center; }
.tear-tab:hover {
  filter: brightness(1.015);
  transform: translateY(7px) rotate(0);
}

@media (max-width: 720px) {
  .album-frame__bow { right: -14%; top: -18%; }
  .ribbon-rule { height: 62px; }
  .ribbon-rule img { width: 92vw; max-width: 92vw; }
  .cleo__photo > img.cleo__photo-ribbon { width: 82%; left: 9%; bottom: -8px; height: auto; }
  .take-one { padding: 72px 12px 92px; }
  .take-one__board {
    padding: 56px 18px 70px;
    background-position: center;
  }
  .lost-notice { padding: 52px 20px 0; }
  .tear-tabs { width: calc(100% + 40px); margin-left: -20px; }
  .tear-tab,
  .tear-tab:nth-child(2n) { height: 110px; }
}

@media (max-width: 430px) {
  .take-one { padding-inline: 7px; }
  .take-one__board { padding: 42px 9px 54px; }
  .lost-notice { padding-inline: 14px; }
  .tear-tabs { width: calc(100% + 28px); margin-left: -14px; }
  .tear-tab,
  .tear-tab:nth-child(2n) { height: 96px; }
}
