:root {
  /* surfaces — warm cream, ink-tinted neutrals */
  --bg: oklch(97% 0.008 65);
  --bg-2: oklch(94% 0.012 60);

  /* text */
  --ink: oklch(22% 0.025 50);
  --ink-2: oklch(38% 0.020 50);
  --muted: oklch(48% 0.015 55);

  /* hairlines + ink-tinted overlays (replaces all rgba(22,19,16,...)) */
  --hair: oklch(22% 0.025 50 / 0.10);
  --hair-strong: oklch(22% 0.025 50 / 0.18);
  --ink-veil-soft: oklch(22% 0.025 50 / 0.04);
  --ink-veil-med: oklch(22% 0.025 50 / 0.10);
  --ink-veil-strong: oklch(22% 0.025 50 / 0.22);

  /* accent — deep oxblood. used at <8% of surface. */
  --accent: oklch(35% 0.13 18);
  --accent-soft: oklch(55% 0.10 18);
  --accent-veil-soft: oklch(35% 0.13 18 / 0.06);
  --accent-veil-med: oklch(35% 0.13 18 / 0.18);

  --max: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --sans: "Geist Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --display: var(--sans); /* italic-on-sans for now; swap to a real serif when type direction settles */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0.05, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ---------- mark ---------- */
.mark {
  position: fixed;
  top: clamp(18px, 2.4vw, 32px);
  left: var(--gutter);
  z-index: 40;
}
.mark__dot {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 1.5px solid var(--hair);
  color: var(--ink);
  transition: transform 0.5s var(--ease-out);
}
.mark__dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.mark__dot:hover {
  transform: rotate(-12deg) scale(1.05);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(80px, 14vh, 160px);
  overflow: hidden;
}

.hero__inner {
  width: min(var(--max), 100%);
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- hero background portrait ---------- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.hero__bg-imgs {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}
.hero__bg img {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(80vw, 960px);
  height: auto;
  max-height: 76vh;
  object-fit: contain;
  object-position: top center;
  transform: translate3d(-50%, 0, 0);
  filter: grayscale(0.18) contrast(1.04) brightness(1.02) saturate(0.92);
  opacity: 0.9;
  -webkit-mask-image: radial-gradient(
    ellipse 85% 75% at 50% 28%,
    #000 40%,
    rgba(0, 0, 0, 0.55) 62%,
    transparent 84%
  );
  mask-image: radial-gradient(
    ellipse 85% 75% at 50% 28%,
    #000 40%,
    rgba(0, 0, 0, 0.55) 62%,
    transparent 84%
  );
}
#heroImgWink {
  opacity: 0;
  pointer-events: none;
}

.hero__bg-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 55%, color-mix(in oklch, var(--bg) 75%, transparent) 75%, color-mix(in oklch, var(--bg) 97%, transparent) 100%);
  pointer-events: none;
}

/* ---------- floating college logos ---------- */
.floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.float {
  position: absolute;
  width: clamp(54px, 7vw, 92px);
  height: auto;
  opacity: 0;
  filter: grayscale(0.55) contrast(1.05);
  mix-blend-mode: multiply;
  will-change: transform, opacity;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform-origin: center;
}

/* density: hide a few to thin out the field */
.float:nth-child(4),
.float:nth-child(8),
.float:nth-child(13),
.float:nth-child(15) {
  display: none;
}

.float:nth-child(3n+1) { animation-name: float-sway-a; }
.float:nth-child(3n+2) { animation-name: float-sway-b; }
.float:nth-child(3n+3) { animation-name: float-sway-c; }

.float:nth-child(1)  { top: 9%;  left: 5%;   animation-duration: 32s; animation-delay: -3s; }
.float:nth-child(2)  { top: 6%;  right: 7%;  animation-duration: 38s; animation-delay: -11s; }
.float:nth-child(3)  { top: 25%; left: 14%;  animation-duration: 34s; animation-delay: -18s; }
.float:nth-child(4)  { top: 21%; right: 16%; animation-duration: 40s; animation-delay: -6s; }
.float:nth-child(5)  { top: 44%; left: 4%;   animation-duration: 36s; animation-delay: -14s; }
.float:nth-child(6)  { top: 38%; right: 6%;  animation-duration: 33s; animation-delay: -2s; }
.float:nth-child(7)  { top: 60%; left: 17%;  animation-duration: 37s; animation-delay: -20s; }
.float:nth-child(8)  { top: 54%; right: 21%; animation-duration: 35s; animation-delay: -9s; }
.float:nth-child(9)  { top: 74%; left: 7%;   animation-duration: 39s; animation-delay: -4s; }
.float:nth-child(10) { top: 70%; right: 10%; animation-duration: 31s; animation-delay: -16s; }
.float:nth-child(11) { top: 85%; left: 36%;  animation-duration: 36s; animation-delay: -7s; }
.float:nth-child(12) { top: 14%; left: 38%;  animation-duration: 34s; animation-delay: -15s; }
.float:nth-child(13) { top: 32%; right: 38%; animation-duration: 38s; animation-delay: -1s; }
.float:nth-child(14) { top: 88%; right: 38%; animation-duration: 33s; animation-delay: -12s; }
.float:nth-child(15) { top: 80%; left: 50%;  animation-duration: 37s; animation-delay: -5s; }
.float:nth-child(16) { top: 92%; right: 14%; animation-duration: 35s; animation-delay: -19s; }
.float:nth-child(17) { top: 47%; left: 30%;  animation-duration: 39s; animation-delay: -8s; }

@keyframes float-sway-a {
  0%, 100% { transform: rotate(-22deg) translateY(0); }
  50%      { transform: rotate(22deg)  translateY(-10px); }
}
@keyframes float-sway-b {
  0%, 100% { transform: rotate(18deg)  translateY(6px); }
  50%      { transform: rotate(-20deg) translateY(-8px); }
}
@keyframes float-sway-c {
  0%, 100% { transform: rotate(-15deg) translateY(-4px); }
  50%      { transform: rotate(24deg)  translateY(8px); }
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 clamp(22px, 4vw, 40px);
}

.hero__line {
  margin: 0;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: clamp(44px, 8.4vw, 132px);
  display: block;
}

.hero__static {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: -0.015em;
}

/* ---------- yc badge ---------- */
.yc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 5px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--hair);
  box-shadow: 0 1px 16px var(--ink-veil-soft);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  margin-bottom: clamp(18px, 2.5vw, 28px);
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.yc-badge:hover {
  background: var(--bg);
  border-color: var(--hair-strong);
  transform: translateY(-1px);
}
.yc-badge__y {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #ff6600;
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}
.yc-badge__text strong {
  font-weight: 600;
  color: var(--ink);
}

/* ---------- search bar ---------- */
.search-bar {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(18px, 2.6vw, 30px) clamp(24px, 3vw, 40px);
  border-radius: 999px;
  background: var(--bg-2);
  border: 1.5px solid var(--hair);
  box-shadow: 0 2px 28px var(--ink-veil-soft);
  max-width: min(1000px, 92vw);
  overflow: visible;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.search-bar:hover {
  border-color: var(--hair-strong);
  box-shadow: 0 4px 32px var(--ink-veil-med);
  transform: translateY(-1px);
}
.search-bar:focus-visible {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px var(--ink-veil-soft), 0 4px 32px var(--ink-veil-med);
}

.search-bar__mag {
  flex-shrink: 0;
  color: var(--muted);
  display: inline-grid;
  place-items: center;
}

/* ---------- hero access link ---------- */
.hero__access {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: clamp(16px, 2.4vw, 26px);
  padding: 6px 2px;
  font: inherit;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.04em;
  color: var(--ink-2);
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  transition: color 0.4s var(--ease-out), gap 0.4s var(--ease-out);
}
.hero__access::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 18px;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transition: opacity 0.4s var(--ease-out), right 0.4s var(--ease-out);
}
.hero__access:hover {
  color: var(--ink);
  gap: 10px;
}
.hero__access:hover::after { opacity: 0.7; right: 22px; }
.hero__access:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
  border-radius: 4px;
}
.hero__access__arrow {
  font-size: 1.1em;
  line-height: 1;
  transform: translateY(1px);
}

.search-bar__query {
  display: inline-flex;
  align-items: center;
  font-size: clamp(18px, 3.2vw, 44px);
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  line-height: 1;
}

.search-bar__static {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.search-bar .flip {
  font-size: inherit;
  margin-top: 0;
  line-height: 1;
  flex-shrink: 0;
}

.search-bar .flip__stage {
  height: 1.15em;
}

.search-bar__caret {
  display: inline-block;
  width: 1.5px;
  height: 1.15em;
  background: var(--accent);
  margin-left: 2px;
  flex-shrink: 0;
  vertical-align: middle;
  animation: sb-blink 1s step-end infinite;
}

@keyframes sb-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* the dice flip */
.flip {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-style: italic;
  letter-spacing: -0.02em;
  margin-top: clamp(6px, 1vw, 14px);
}

.flip__stage {
  position: relative;
  display: inline-block;
  perspective: 420px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  /* width is set inline by JS to match the active word */
  height: 1em;
  vertical-align: baseline;
  padding: 0 0.04em; /* tiny breathing room for italic kerning */
}

.flip__face {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  color: var(--accent);
  /* JS sets transform/opacity */
}

.flip__caret {
  display: inline-block;
  font-family: var(--display);
  font-style: normal;
  color: var(--accent);
  margin-left: 0.04em;
}

.hero__rule {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(70px, 9vh, 110px);
  height: 1px;
  background: var(--hair);
  transform-origin: left;
  z-index: 3;
}

.hero__meta {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(34px, 5vh, 60px);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}

/* ---------- pill ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 24px;
  border-radius: 999px;
  background: var(--ink-veil-soft);
  border: 1px solid var(--hair);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: transform 0.5s var(--ease-out), background 0.4s var(--ease-out),
    color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.pill:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.pill__arrow {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: currentColor;
  color: var(--bg);
  transition: transform 0.5s var(--ease-out);
}
.pill__arrow svg {
  color: var(--ink);
}
.pill:hover .pill__arrow {
  transform: translateX(2px);
}
.pill:hover .pill__arrow svg {
  color: var(--ink);
}

.pill--ink {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.pill--ink .pill__arrow {
  background: var(--bg);
}
.pill--ink .pill__arrow svg {
  color: var(--ink);
}
.pill--ink:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.pill--ink:hover .pill__arrow svg {
  color: var(--accent);
}

/* ---------- closer ---------- */
.closer {
  padding: clamp(100px, 14vh, 180px) var(--gutter);
  border-top: 1px solid var(--hair);
  text-align: center;
  display: grid;
  place-items: center;
  gap: clamp(28px, 4vw, 44px);
}

.closer__line {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.closer__line em {
  color: var(--accent);
  font-style: italic;
}

/* ---------- footer ---------- */
.foot {
  display: flex;
  justify-content: space-between;
  padding: 24px var(--gutter);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--hair);
}

/* ---------- modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden] {
  display: none;
}
.modal__scrim {
  position: absolute;
  inset: 0;
  background: oklch(22% 0.025 50 / 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
}
.modal__card {
  position: relative;
  width: min(520px, 100%);
  background: var(--bg);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--hair);
  box-shadow: 0 40px 80px -30px oklch(22% 0.025 50 / 0.35);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}
.modal__x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  transition: background 0.3s var(--ease-out);
}
.modal__x:hover {
  background: var(--ink-veil-soft);
}
.modal__kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.modal__title {
  margin: 0 0 6px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.modal__sub {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 14px;
}

.modal__form {
  display: grid;
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
.field__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--hair);
  background: var(--ink-veil-soft);
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.field input:focus {
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 3px var(--accent-veil-soft);
}
.modal__submit {
  justify-self: start;
  margin-top: 8px;
}

.modal__err {
  margin: 6px 0 0;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-veil-soft);
  border: 1px solid var(--accent-veil-med);
  border-radius: 10px;
  letter-spacing: 0.02em;
}


/* ---------- reveal helper ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ------- locked roster ------- */
.roster {
  padding: clamp(72px, 10vh, 120px) 0 clamp(72px, 10vh, 120px) var(--gutter);
  border-top: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}

.roster::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(80px, 10vw, 160px);
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

.roster__kicker {
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.roster__track {
  display: flex;
  gap: 14px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-right: clamp(80px, 10vw, 160px);
}

.roster__track::-webkit-scrollbar {
  display: none;
}

.roster__card {
  flex-shrink: 0;
  width: 220px;
  border-radius: 16px;
  border: 1px solid var(--hair);
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--bg-2);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  will-change: transform;
}

.roster__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--ink-veil-med);
}

.roster__portrait {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: var(--bg-2);
}

.roster__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.roster__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, oklch(22% 0.025 50 / 0.22) 100%);
  pointer-events: none;
}

.roster__lock {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: oklch(97% 0.008 65 / 0.88);
  display: inline-grid;
  place-items: center;
  color: var(--ink-2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.roster__info {
  padding: 11px 14px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--hair);
  background: var(--bg);
}

.roster__badge {
  height: 18px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  filter: grayscale(0.45);
  opacity: 0.82;
}

.roster__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.roster__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.roster__year {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
}

/* ------- film grain + breathing vignette ------- */
.grain-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 80;
  mix-blend-mode: soft-light;
  opacity: 0.42;
}

.grain-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 79;
  background: radial-gradient(
    ellipse 72% 65% at 50% 38%,
    transparent 42%,
    oklch(22% 0.025 50 / 0) 56%,
    oklch(22% 0.025 50 / 0.13) 100%
  );
  animation: vig-breathe 14s ease-in-out infinite;
}

@keyframes vig-breathe {
  0%, 100% { opacity: 0.65; }
  50%       { opacity: 1.0; }
}

@media (prefers-reduced-motion: reduce) {
  .grain-canvas   { display: none; }
  .grain-vignette { opacity: 0.8; }
}

@media (max-width: 640px) {
  /* --- hero --- */
  .hero {
    padding-bottom: clamp(60px, 10vh, 100px);
  }

  .hero__bg img {
    width: 96vw;
    max-height: 62vh;
  }

  .hero__meta {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .hero__rule {
    bottom: clamp(50px, 7vh, 80px);
  }

  /* --- search bar: full width, fluid text --- */
  .search-bar {
    display: flex;
    width: 92vw;
    padding: 14px 18px;
    gap: 10px;
  }

  .search-bar__query {
    font-size: clamp(13px, 4.4vw, 22px);
    flex: 1;
    min-width: 0;
  }

  /* hide decorative cursor on touch screens */
  .mouse-cursor {
    display: none;
  }

  /* --- closer --- */
  .closer {
    padding: clamp(64px, 10vh, 100px) var(--gutter);
  }

  /* --- floats: smaller, fewer on mobile --- */
  .float {
    width: clamp(38px, 11vw, 60px);
  }
  .float:nth-child(2n) {
    display: none;
  }
}
