/* ============================================================
   Mariia Kyreieva — portfolio
   Modern magazine. Helvetica only, letter-spacing 0 everywhere,
   near-white paper, black type, clean pink accent.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:root {
  --paper:   #FBFAF8;
  --sheet:   #FFFFFF;
  --ink:     #000000;
  --ink-2:   #3A3A3A;
  --ink-3:   #8C8C8C;
  --rule:    #E2E0DC;

  --pink:        #F5A3B8;   /* soft — big display type */
  --pink-strong: #EE3D74;   /* saturated — small accents */

  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gutter: clamp(18px, 4vw, 64px);
  --max:    1360px;
}

/* letter-spacing is 0 everywhere, always, no exceptions */
* { letter-spacing: 0 !important; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: clamp(14px, 0.45vw + 12.6px, 16px);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--pink); color: #000; }
:focus-visible { outline: 2px solid var(--pink-strong); outline-offset: 3px; }

/* ============================================================
   Decorative cutouts
   ============================================================ */
.decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 5;
}
.decor--clip-cover  { width: clamp(46px, 4.6vw, 74px); top: 0; left: 20%; transform: translateY(-74%); }
.decor--clip-sheet  { width: clamp(58px, 5.5vw, 92px); top: -26px; left: 44px; transform: rotate(6deg); }
.decor--clip-about  { width: clamp(46px, 4.6vw, 74px); top: 0; right: 14%; transform: translateY(-74%); }
.decor--coffee      { width: clamp(96px, 12vw, 210px); right: 3%; bottom: 4%; transform: rotate(9deg); opacity: .95; }
.decor--pen         { width: clamp(96px, 11vw, 188px); right: -26px; bottom: 30px; transform: rotate(-24deg); }
.decor--headphones  { width: clamp(78px, 8vw, 138px); right: 28px; top: 46%; transform: rotate(12deg); }
.decor--notebook    { width: clamp(120px, 15vw, 250px); left: 2%; bottom: 6%; transform: rotate(-6deg); }

@media (max-width: 900px) {
  .decor--pen, .decor--headphones { display: none; }
  /* keep the cover's issue line clear on small screens */
  .decor--coffee { width: 84px; top: auto; bottom: 20%; right: 2%; }
  .decor--clip-cover { width: 46px; top: 0; left: auto; right: 14%; transform: translateY(-74%); }
  .decor--notebook { width: 108px; left: auto; right: 4%; bottom: 2%; }
  .star--a { right: auto; left: 62%; top: 6%; width: 26px; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 14px var(--gutter);
  background: rgba(251,250,248,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  font-size: .8rem;
}
.nav__name { font-weight: 700; }
.nav__links { display: flex; gap: clamp(10px, 1.6vw, 26px); flex-wrap: wrap; }
.nav__links a { color: var(--ink-2); padding-bottom: 2px; border-bottom: 1.5px solid transparent; transition: color .2s, border-color .2s; }
.nav__links a:hover,
.nav__links a.is-current { color: var(--pink-strong); border-bottom-color: var(--pink-strong); }

/* ============================================================
   COVER
   ============================================================ */
.cover {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) var(--gutter) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  grid-template-areas:
    "issue photo"
    "title photo"
    "role  photo"
    "meta  photo";
  grid-template-rows: auto auto auto 1fr;
  column-gap: clamp(20px, 4vw, 64px);
  align-items: start;
}
.cover__title {
  grid-area: title;
  font-size: clamp(3.1rem, 9.5vw, 8.4rem);
  line-height: .92;
  font-weight: 700;
}
.cover__line { display: block; }
.cover__line--pink { color: var(--pink); }

.cover__photo {
  grid-area: photo;
  position: relative;
  margin-top: clamp(6px, 1.5vw, 22px);
}
.cover__photo img:not(.decor) {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 32%;
  filter: grayscale(100%) contrast(1.06);
}
.cover__photo::after {           /* layered sheet behind the photo */
  content: "";
  position: absolute; inset: 16px -16px -16px 16px;
  background: var(--pink);
  z-index: -1;
}

.cover__kicker {
  grid-area: kick;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  padding-top: clamp(14px, 2vw, 26px);
}
.cover__meta {
  grid-area: meta;
  display: flex; flex-direction: column; gap: 3px;
  padding-top: 8px;
  color: var(--ink-2);
  font-size: .85rem;
  align-self: end;
  padding-bottom: clamp(4px, 1.5vw, 22px);
}

@media (max-width: 780px) {
  .cover {
    grid-template-columns: 1fr;
    grid-template-areas: "issue" "title" "role" "photo" "meta";
    grid-template-rows: auto;
    row-gap: 14px;
  }
  .cover__photo::after { inset: 12px -12px -12px 12px; }
  .cover__meta { padding-top: 20px; }
}

/* ============================================================
   NUMBERS STRIP
   ============================================================ */
.numbers {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(24px, 3.4vw, 44px) var(--gutter);
}
.numbers__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 44px);
}
.num { display: flex; flex-direction: column; gap: 6px; }
.num__v {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1;
  color: var(--pink);
  font-variant-numeric: tabular-nums;
}
.num__l { font-size: .78rem; color: rgba(251,250,248,.72); line-height: 1.35; }
@media (max-width: 700px) { .numbers__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   CASE
   ============================================================ */
.case {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(30px, 4.2vw, 60px) var(--gutter) 0;
}

/* the white "page" — layered sheet with a shadow stack */
.sheet {
  position: relative;
  background: var(--sheet);
  padding: clamp(22px, 3vw, 42px);
  box-shadow:
      0 1px 2px rgba(0,0,0,.07),
      0 10px 26px rgba(0,0,0,.07),
      /* stacked pages peeking out on the right */
      6px 6px 0 -1px var(--sheet),
      6px 6px 0 0 var(--rule),
      12px 12px 0 -1px var(--sheet),
      12px 12px 0 0 var(--rule);
}

.case__head {
  display: flex; align-items: baseline; gap: clamp(14px, 2vw, 28px);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.case__no {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700; line-height: .9;
  color: var(--pink);
}
.case__client { font-size: clamp(1.15rem, 2vw, 1.7rem); font-weight: 700; }
.case__role   { font-size: .82rem; color: var(--ink-3); padding-top: 2px; }
.case__nda-tag {
  display: inline-block; margin-left: 10px;
  font-size: .62em; font-weight: 700; color: var(--pink-strong);
  border: 1.5px solid var(--pink-strong); border-radius: 2px;
  padding: 1px 7px; vertical-align: middle;
}

/* title + standfirst share a row so the sheet has no dead space */
.case__lede {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  padding: clamp(16px, 2.2vw, 28px) 0 0;
}
.case__title {
  font-size: clamp(1.75rem, 4vw, 3.15rem);
  line-height: 1.03;
  font-weight: 700;
  max-width: 20ch;
}
.case__title em { font-style: normal; color: var(--pink); }

.case__standfirst {
  font-size: clamp(.95rem, 1.15vw, 1.08rem);
  color: var(--ink-2);
  max-width: 46ch;
  padding-bottom: 4px;
}
@media (max-width: 860px) {
  .case__lede { grid-template-columns: 1fr; align-items: start; row-gap: 12px; }
  .case__standfirst { padding-bottom: 0; }
}

.case__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 52px);
  padding-top: clamp(18px, 2.4vw, 30px);
}
.case__text { max-width: 62ch; }
.case__text h4 {
  font-size: .78rem; font-weight: 700;
  padding: 18px 0 5px;
  border-top: 1px solid var(--rule);
  margin-top: 16px;
}
.case__text h4:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.case__text p { color: var(--ink-2); margin-top: .7em; }
.case__text p:first-of-type { margin-top: 0; }

.mark  { background: var(--pink); color: #000; padding: 0 3px; box-decoration-break: clone; }
.chip  { border: 1.5px solid var(--ink); padding: 1px 8px; font-weight: 700; white-space: nowrap; }

.markets { margin: .8em 0; border-left: 3px solid var(--pink); padding-left: 16px; }
.markets li { color: var(--ink-2); margin-bottom: .5em; }
.markets b { color: var(--ink); }

/* results — small, dense, right column */
.results { align-self: start; border-top: 2px solid var(--ink); }
.results li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.results__v {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700; line-height: 1;
  color: var(--pink-strong);
  font-variant-numeric: tabular-nums;
}
.results__v i { font-style: normal; color: var(--ink-3); }
.results__v--word { font-size: clamp(1.1rem, 1.8vw, 1.5rem); color: var(--ink); }
.results__v--nda {
  font-size: 1.15rem; color: var(--pink-strong);
  border: 2px solid var(--pink-strong); padding: 2px 10px;
  align-self: flex-start; transform: rotate(-3deg);
}
.results__l { font-size: .8rem; color: var(--ink-2); line-height: 1.35; }
.results__l b { color: var(--ink); }

@media (max-width: 860px) { .case__cols { grid-template-columns: 1fr; } }

/* ============================================================
   CASE MATERIAL — full images, never cropped
   ============================================================ */

/* wide carousels: full height, scroll sideways */
.reel { margin-top: clamp(18px, 2.4vw, 30px); }
.reel__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  background: var(--sheet);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  cursor: grab;
}
.reel__scroll:active { cursor: grabbing; }
.reel__scroll img {
  height: clamp(240px, 27vw, 366px);
  width: auto;
  max-width: none;
}
.reel figcaption {
  font-size: .78rem; color: var(--ink-3);
  padding-top: 8px;
}
.reel figcaption span { color: var(--ink-2); }

/* plates: full images side by side, nothing cropped */
.plates {
  display: grid;
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(18px, 2.4vw, 30px);
  align-items: start;
}
.plates--three { grid-template-columns: repeat(3, 1fr); }
.plate {
  background: var(--sheet);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  padding: 10px;
}
.plate img {                         /* full image, never cropped */
  width: auto; height: auto;
  max-width: 100%; max-height: 470px;
  margin: 0 auto;
}
.plate figcaption { font-size: .74rem; color: var(--ink-3); padding-top: 8px; }
@media (max-width: 860px) { .plates--three { grid-template-columns: 1fr; } }

/* videos — vertical 9:16, kept small so they don't eat the page */
.videos {
  display: flex; flex-wrap: wrap;
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(18px, 2.4vw, 30px);
}
.vid { flex: 0 1 auto; }
.vid__frame { position: relative; background: #000; line-height: 0; }
.vid video {
  height: clamp(260px, 26vw, 348px);
  width: auto; max-width: 100%;
}
.vid__sound {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(0,0,0,.72); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 7px 13px; border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: background .2s, color .2s;
}
.vid__sound:hover { background: var(--pink-strong); }
.vid__sound.is-on { background: var(--pink); color: #000; }
.vid figcaption { font-size: .74rem; color: var(--ink-3); padding-top: 8px; }
@media (max-width: 700px) { .videos { grid-template-columns: 1fr; } }

/* NDA plate */
.nda {
  position: relative; margin-top: clamp(18px, 2.4vw, 30px);
  background: #111; overflow: hidden;
  aspect-ratio: 16 / 7;
}
.nda img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(22px) grayscale(35%); opacity: .5;
}
.nda__stamp {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: #fff; text-align: center; padding: 20px;
}
.nda__stamp span:first-child {
  font-size: clamp(1.7rem, 4.6vw, 3.4rem); font-weight: 700;
  color: var(--pink); border: 3px solid var(--pink);
  padding: 6px 26px; transform: rotate(-3deg);
}
.nda__stamp span:last-child { font-size: .84rem; color: rgba(255,255,255,.82); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(44px, 5.5vw, 84px) var(--gutter) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-areas: "title title" "photo text";
  column-gap: clamp(24px, 4vw, 64px);
  row-gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
}
.about__title {
  grid-area: title;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  font-weight: 700; line-height: .95;
  color: var(--pink);
}
.about__photo { grid-area: photo; position: relative; }
.about__photo img:not(.decor) { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 26%; }
.about__photo::after {
  content: ""; position: absolute; inset: -14px 14px 14px -14px;
  border: 2px solid var(--ink); z-index: -1;
}
.about__text { grid-area: text; align-self: center; }
.about__text p {
  font-size: clamp(1.05rem, 1.9vw, 1.6rem);
  line-height: 1.35; max-width: 30ch;
}
.about__text p + p { margin-top: .9em; }
.about__text em { font-style: normal; color: var(--pink-strong); }

@media (max-width: 780px) {
  .about { grid-template-columns: 1fr; grid-template-areas: "title" "photo" "text"; }
  .about__text p { max-width: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink); color: var(--paper);
  margin-top: clamp(40px, 6vw, 80px);
  padding: clamp(44px, 6vw, 90px) var(--gutter) 30px;
}
.foot__title {
  max-width: var(--max); margin: 0 auto;
  font-size: clamp(2.8rem, 10vw, 8rem);
  font-weight: 700; line-height: .95;
  color: var(--pink);
}
.foot__cols {
  max-width: var(--max); margin: clamp(30px, 4vw, 56px) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 50px);
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(251,250,248,.2);
}
.foot__label { color: var(--pink); font-weight: 700; font-size: .82rem; margin-bottom: 8px; }
.foot__col li { margin-bottom: 6px; font-size: .9rem; }
.foot__col a { border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.foot__col a:hover { color: var(--pink); border-bottom-color: var(--pink); }
.foot__bar {
  max-width: var(--max); margin: clamp(28px, 4vw, 48px) auto 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid rgba(251,250,248,.14);
  font-size: .76rem; color: rgba(251,250,248,.6);
}
.foot__bar a:hover { color: var(--pink); }
@media (max-width: 780px) { .foot__cols { grid-template-columns: 1fr; } }

/* ============================================================
   MAGAZINE DETAIL — grain, cursor ring, stars, marquee,
   margin notes, caps labels, edge tabs
   ============================================================ */

/* paper grain over everything */
.grain {
  position: fixed; inset: 0; z-index: 60;
  pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* cursor ring */
.ring {
  position: fixed; top: 0; left: 0; z-index: 70;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--pink-strong);
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition: width .2s, height .2s, background .2s, border-color .2s, opacity .25s;
  opacity: 0;
}
.ring.is-on   { opacity: 1; }
.ring.is-live { width: 58px; height: 58px; background: rgba(238,61,116,.12); }
@media (hover: none) { .ring { display: none; } }

/* twinkling stars */
.star {
  width: clamp(13px, 1.5vw, 21px); height: auto;
  fill: var(--pink-strong);
  flex: none;
  animation: twinkle 3.2s ease-in-out infinite;
}
.star--a {
  position: absolute;
  right: 2%; top: -2%;
  width: clamp(22px, 3vw, 46px);
  animation: spin 9s linear infinite;
}
.cover__line:first-child { position: relative; }
@keyframes twinkle {
  0%, 100% { transform: scale(1);   opacity: 1;  }
  50%      { transform: scale(.62); opacity: .45; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* running strips */
.marquee {
  background: var(--ink); color: var(--paper);
  padding: 11px 0; overflow: hidden;
  border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
}
.marquee--pink { background: var(--pink); color: #000; border-color: #000; }
.marquee__track {
  display: flex; gap: 26px; white-space: nowrap; width: max-content;
  font-size: clamp(.82rem, 1.2vw, 1.05rem); font-weight: 700;
  animation: slide 42s linear infinite;
}
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee__track i { font-style: normal; color: var(--pink-strong); }
.marquee--pink .marquee__track i { color: #fff; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }

/* margin notes — the only place handwriting is used */
.note {
  font-family: "Caveat", "Bradley Hand", cursive;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  color: var(--pink-strong);
  line-height: 1.15;
}
.note--margin {
  position: absolute; right: clamp(14px, 2.4vw, 34px); top: clamp(12px, 2vw, 22px);
  max-width: 15ch; text-align: right;
  transform: rotate(-3deg);
  z-index: 6;
}
.note--photo {
  position: absolute; right: 6px; bottom: -62px;
  transform: rotate(-4deg);
  color: var(--ink-2);
}
.note--about {
  position: absolute; left: clamp(18px, 4vw, 64px); top: clamp(18px, 3vw, 46px);
  transform: rotate(-2deg);
}
@media (max-width: 900px) { .note--margin { position: static; display: block; max-width: none; text-align: left; transform: rotate(-1deg); margin-bottom: 8px; } }

/* tab sticking out of the top of each sheet */
.sheet__edge {
  position: absolute; top: -19px; right: clamp(28px, 6vw, 84px);
  background: var(--ink); color: var(--paper);
  font-size: .64rem; font-weight: 700;
  padding: 4px 12px 5px;
  z-index: 4;
}

/* caps kicker above results */
.results__kicker {
  font-size: .68rem; font-weight: 700; color: var(--ink);
  padding-bottom: 7px;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: -2px;
}
.results__wrap .results { border-top: none; }

/* cover issue line with hairline rules */
.cover__issue {
  grid-area: issue;
  display: flex; align-items: center; gap: 12px;
  font-size: .68rem; font-weight: 700; color: var(--ink-2);
  padding-bottom: clamp(8px, 1.4vw, 16px);
}
.cover__issue .rule { flex: 1; height: 1px; background: var(--rule); max-width: 90px; }

.cover__role {
  grid-area: role;
  font-size: clamp(.92rem, 1.35vw, 1.2rem);
  color: var(--ink-2);
  padding-top: clamp(8px, 1.2vw, 14px);
}
.cover__line--name { font-size: .62em; display: block; }

.cover__meta b {
  display: inline-block; min-width: 74px;
  font-size: .66rem; color: var(--ink);
}

/* extra clips */
.decor--clip-cover2 { width: clamp(52px, 5vw, 84px); right: -7%; top: 30%; transform: rotate(90deg); }
.decor--clip-side   { width: clamp(46px, 4.4vw, 74px); left: -3.2%; top: 42%; transform: rotate(-90deg); }
.decor--clip-about2 { width: clamp(48px, 4.6vw, 78px); left: 0; top: 42%; transform: translateX(-81%) rotate(-90deg); }
@media (max-width: 900px) { .decor--clip-cover2, .decor--clip-side, .decor--clip-about2 { display: none; } }

/* bigger cutouts, deeper shadows */
.decor--coffee     { width: clamp(110px, 15vw, 270px); }
.decor--pen        { width: clamp(120px, 14vw, 250px); }
.decor--headphones { width: clamp(100px, 11vw, 195px); }
.decor--notebook   { width: clamp(150px, 19vw, 320px); }
.decor { filter: drop-shadow(0 12px 18px rgba(0,0,0,.22)); }

/* paper: lift the sheets a little more */
.sheet {
  box-shadow:
      0 2px 4px rgba(0,0,0,.09),
      0 18px 40px rgba(0,0,0,.11),
      6px 6px 0 -1px var(--sheet),
      6px 6px 0 0 var(--rule),
      12px 12px 0 -1px var(--sheet),
      12px 12px 0 0 var(--rule);
}
.reel__scroll, .plate, .vid__frame { box-shadow: 0 12px 30px rgba(0,0,0,.10); }

/* headphones + note fill the cover's left column */
.decor--hp-cover {
  width: clamp(120px, 14vw, 232px);
  left: 5%; bottom: 27%;
  transform: rotate(-12deg);
}
.note--cover {
  position: absolute;
  left: 34%; bottom: 27%;
  transform: rotate(-4deg);
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  line-height: 1.1;
}
@media (max-width: 900px) { .decor--hp-cover, .note--cover { display: none; } }

/* clear air between the last case and the marquee that follows it */
.case:last-of-type { padding-bottom: clamp(34px, 5vw, 76px); }

/* floating stars parked in the quiet corners */
.star--float {
  position: absolute;
  width: clamp(16px, 2.2vw, 34px);
  animation: spin 11s linear infinite;
  z-index: 3;
}
.cover .star--float  { left: 27%; bottom: 46%; }
.about .star--float  { right: 6%;  top: 30%; animation-duration: 14s; }
.sheet .star--float  { right: 3%; bottom: 5%; left: auto; width: clamp(14px, 1.8vw, 26px); }
@media (max-width: 900px) {
  .cover .star--float, .sheet .star--float { display: none; }
  .about .star--float { right: 4%; top: 12%; }
}
