/* ============================================================
   CLIMBING ROCKS — teaser one-pager
   Brand + layout: characterized, curated, analog.
   ============================================================ */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/BricolageGrotesque-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/BricolageGrotesque-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #162d13;
  --yellow: #d7cc63;
  --sky: #9bd7e1;
  --blue: #5f6b92;
  --cream: #fff5db;
  --orange: #ed832b;

  --ink: var(--forest);
  --paper: var(--cream);

  --font-display: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", system-ui, sans-serif;

  --ease-rock: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.4, 0.64, 1);
  --ease-hold: cubic-bezier(0.16, 1, 0.3, 1);

  --pad: clamp(1.15rem, 4.2vw, 3.25rem);
  --max: 1120px;
  --header: 4.25rem;

  --z-rope: 4;
  --z-content: 8;
  --z-float: 18;
  --z-header: 40;
  --z-cursor: 70;
  --z-grain: 80;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--forest);
  background: var(--forest);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 100;
  background: var(--cream);
  color: var(--forest);
  padding: 0.55rem 0.85rem;
  font-weight: 500;
}

.skip:focus {
  top: 0.75rem;
}

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

/* ------------------------------------------------------------
   Fake boot — cascade of doodles into the hero
   ------------------------------------------------------------ */
.boot {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: start;
  justify-items: center;
  overflow: hidden;
  background: var(--cream);
  color: var(--forest);
  text-align: center;
  padding: clamp(1.4rem, 9vh, 4.5rem) 1.5rem 2rem;
  transition: opacity 1.35s var(--ease-rock), visibility 1.35s, transform 1.35s var(--ease-rock);
}

.boot.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-22px);
}

body.is-booting .site-header {
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.boot-copy {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0.15rem 0.4rem 0.35rem;
  pointer-events: none;
}

.boot-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.boot-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-size: clamp(2.4rem, 9vw, 5.2rem);
}

.boot-sei {
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.12em;
  margin-bottom: 0.25em;
}

.boot-roccia {
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
}

.boot-o {
  display: inline-block;
  width: 0.78em;
  height: 0.78em;
  animation: boot-pop 1.1s var(--ease-snap) infinite;
}

.boot-o svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.boot-sub {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.boot-cascade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.boot-bit {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--bit-w, 88px);
  margin: 0;
  transform-origin: center center;
  animation: boot-cascade var(--fall-t, 0.95s) cubic-bezier(0.2, 0.72, 0.22, 1) var(--delay, 0s) both;
  will-change: transform;
}

.boot-bit .doodle-wrap,
.boot-bit .doodle {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  background: none;
  border: 0;
  padding: 0;
}

.boot-bit.is-away {
  animation: boot-away 1.05s var(--ease-rock) forwards;
}

@keyframes boot-pop {
  0%,
  100% {
    transform: rotate(-8deg) scale(1);
  }
  50% {
    transform: rotate(8deg) scale(1.08);
  }
}

@keyframes boot-cascade {
  0% {
    transform: translate(var(--from-x), -26vh) rotate(var(--spin-from)) scale(0.72);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  82% {
    transform: translate(var(--land-x), calc(var(--land-y) + 14px)) rotate(calc(var(--spin-to) + 8deg)) scale(1.05);
  }
  100% {
    transform: translate(var(--land-x), var(--land-y)) rotate(var(--spin-to)) scale(1);
    opacity: 1;
  }
}

@keyframes boot-away {
  from {
    transform: translate(var(--land-x), var(--land-y)) rotate(var(--spin-to)) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(var(--land-x), 112vh) rotate(calc(var(--spin-to) + 40deg)) scale(0.85);
    opacity: 0;
  }
}

/* Grain — almost invisible, analog */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: var(--z-header);
  display: flex;
  justify-content: flex-end;
  width: auto;
  min-height: 0;
  padding: 0.8rem var(--pad) 0.8rem 0.8rem;
  background: transparent;
  border: 0;
  pointer-events: none;
  transition: opacity 1.15s var(--ease-rock);
}

.brand-lock {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: var(--cream);
  -webkit-mask: url("assets/brand/mark.svg") center / contain no-repeat;
  mask: url("assets/brand/mark.svg") center / contain no-repeat;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.05;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  pointer-events: auto;
}

.chip,
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  min-height: 44px;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  background: transparent;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-rock), background 0.25s ease, color 0.25s ease;
}

.chip:hover,
.ig-link:hover {
  background: var(--cream);
  color: var(--forest);
  transform: rotate(-2deg);
}

.chip-solid {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--cream);
}

.chip-solid:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

/* ------------------------------------------------------------
   Rope
   ------------------------------------------------------------ */
.rope-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-rope);
  overflow: hidden;
}

.rope-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rope-svg.is-mobile {
  display: none;
}

.rope-path {
  fill: none;
  stroke: var(--forest);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rope-core {
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rope-path,
.rope-core {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-rope linear both;
  animation-timeline: scroll(root);
}

@keyframes draw-rope {
  to {
    stroke-dashoffset: 0;
  }
}

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.page {
  position: relative;
  overflow-x: hidden;
}

.poster {
  position: relative;
  z-index: var(--z-content);
  padding: clamp(4.5rem, 10vw, 7.5rem) var(--pad);
}

.poster::before,
.punch::before,
.site-footer::before,
.privacy-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -3.1rem;
  height: calc(3.2rem + 10px);
  background: inherit;
  pointer-events: none;
  clip-path: polygon(
    0 100%,
    0 58%,
    8% 86%,
    17% 34%,
    28% 72%,
    39% 22%,
    50% 68%,
    61% 30%,
    73% 80%,
    84% 38%,
    93% 74%,
    100% 42%,
    100% 100%
  );
}

.hero {
  z-index: 1;
}
.manifesto {
  z-index: 2;
}
.about {
  z-index: 3;
}
.cooking {
  z-index: 4;
}
.people {
  z-index: 5;
}
.join {
  z-index: 6;
}

.manifesto::before {
  clip-path: polygon(
    0 100%,
    0 70%,
    10% 32%,
    21% 84%,
    33% 40%,
    44% 78%,
    56% 24%,
    67% 66%,
    79% 36%,
    90% 82%,
    100% 48%,
    100% 100%
  );
}

.about::before {
  background: var(--sky);
  clip-path: polygon(
    0 100%,
    0 62%,
    12% 88%,
    24% 40%,
    38% 78%,
    51% 28%,
    64% 70%,
    78% 36%,
    90% 82%,
    100% 48%,
    100% 100%
  );
}

.cooking::before {
  background: var(--orange);
  clip-path: polygon(
    0 100%,
    0 44%,
    11% 78%,
    22% 26%,
    34% 70%,
    47% 32%,
    58% 84%,
    70% 28%,
    82% 72%,
    93% 38%,
    100% 66%,
    100% 100%
  );
}

.people::before {
  background: var(--cream);
  clip-path: polygon(
    0 100%,
    0 60%,
    9% 28%,
    20% 76%,
    32% 34%,
    43% 82%,
    55% 26%,
    66% 68%,
    77% 40%,
    88% 80%,
    100% 36%,
    100% 100%
  );
}

.join::before {
  background: var(--yellow);
  clip-path: polygon(
    0 100%,
    0 52%,
    14% 84%,
    25% 30%,
    36% 74%,
    49% 22%,
    60% 78%,
    72% 34%,
    83% 70%,
    94% 40%,
    100% 62%,
    100% 100%
  );
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  display: grid;
  justify-items: center;
  align-items: stretch;
  padding: 0.6rem var(--pad) 1.4rem;
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='130' viewBox='0 0 112 130'%3E%3Cg fill='none' stroke='%23FFF5DB' stroke-width='1.15'%3E%3Ccircle cx='24' cy='26' r='3.1'/%3E%3Ccircle cx='80' cy='26' r='3.1'/%3E%3Ccircle cx='52' cy='91' r='3.1'/%3E%3Ccircle cx='108' cy='91' r='2.5'/%3E%3Ccircle cx='-4' cy='91' r='2.5'/%3E%3C/g%3E%3Cg fill='%23FFF5DB'%3E%3Ccircle cx='24' cy='26' r='0.8'/%3E%3Ccircle cx='80' cy='26' r='0.8'/%3E%3Ccircle cx='52' cy='91' r='0.8'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='480' height='420' viewBox='0 0 480 420'%3E%3Cpath d='M70 250 C58 170 140 120 198 148 C268 180 278 258 220 302 C150 350 82 318 70 250Z' fill='none' stroke='%23FFF5DB' stroke-width='7' stroke-linejoin='round' opacity='0.28'/%3E%3Ccircle cx='186' cy='214' r='4.5' fill='%23FFF5DB' opacity='0.22'/%3E%3Cpath d='M340 90 C328 48 372 28 402 46 C434 66 428 108 396 122 C364 136 348 118 340 90Z' fill='none' stroke='%23FFF5DB' stroke-width='5.5' stroke-linejoin='round' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 120px 140px, 460px 400px;
  background-position: 14px 12px, 8% 72%;
  background-repeat: repeat, no-repeat;
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 40%,
    transparent 0 4%,
    rgb(0 0 0 / 0.05) 14%,
    rgb(0 0 0 / 0.14) 28%,
    rgb(0 0 0 / 0.32) 48%,
    rgb(0 0 0 / 0.55) 68%,
    rgb(0 0 0 / 0.8) 86%,
    #000 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 50% 40%,
    transparent 0 4%,
    rgb(0 0 0 / 0.05) 14%,
    rgb(0 0 0 / 0.14) 28%,
    rgb(0 0 0 / 0.32) 48%,
    rgb(0 0 0 / 0.55) 68%,
    rgb(0 0 0 / 0.8) 86%,
    #000 100%
  );
}

.hero-splashes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.splash-sun {
  position: absolute;
  top: 8%;
  right: 9%;
  width: min(150px, 26vw);
  opacity: 0.95;
  animation: spin-slow 22s linear infinite;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--yellow) 55%, transparent));
}

.splash-blob {
  position: absolute;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.splash-blob-a {
  top: -8%;
  left: -6%;
  width: min(420px, 48vw);
  animation: blob-drift 11s var(--ease-hold) infinite;
}

.splash-blob-b {
  right: -8%;
  bottom: 6%;
  width: min(380px, 44vw);
  opacity: 0.32;
  animation: blob-drift 13s var(--ease-hold) -3s infinite reverse;
}

.splash-blob-c {
  left: 8%;
  bottom: 18%;
  width: min(280px, 36vw);
  opacity: 0.22;
  animation: blob-drift 9s var(--ease-hold) -1.5s infinite;
}

.splash-blob-d {
  top: 28%;
  right: 22%;
  width: min(220px, 28vw);
  opacity: 0.2;
  animation: blob-drift 15s var(--ease-hold) -5s infinite reverse;
}

.hero-inner {
  width: min(720px, 100%);
  min-height: 100%;
  text-align: center;
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.hero-lockup {
  margin: 0;
  flex: 0 0 auto;
}

.hero-copy {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0.2rem 0 0;
}

.hero-logo {
  width: min(320px, 62vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: none;
  opacity: 0;
}

body.is-ready .hero-logo {
  animation: drop-in 1.28s var(--ease-rock) 0.16s both, logo-breathe 7.2s ease-in-out 1.55s infinite;
}

body.is-ready .hero-tag {
  animation: drop-in 1.18s var(--ease-rock) 0.3s both;
}

body.is-ready .hero-micro {
  animation: drop-in 1.12s var(--ease-rock) 0.42s both;
}

.hero-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3.4vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 auto 0.55rem;
  max-width: 18ch;
  text-wrap: balance;
  opacity: 0;
}

.hero-micro {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 78%, var(--yellow));
  opacity: 0;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  margin: 2.15rem auto 0;
  flex: 0 0 auto;
  padding: 0.75rem 1.2rem 0.6rem;
  text-decoration: none;
  background: var(--yellow);
  color: var(--forest);
  border: 3px solid var(--forest);
  box-shadow: 5px 5px 0 var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  rotate: -2deg;
}

body.is-ready .scroll-cue {
  animation: drop-in 1.15s var(--ease-rock) 0.54s both, cue-bounce 1.45s var(--ease-hold) 1.85s infinite;
}

.scroll-cue-kicker {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.scroll-cue-arrow {
  font-size: 1.45rem;
  line-height: 1;
}

.scroll-cue:hover {
  background: var(--orange);
  box-shadow: 6px 6px 0 var(--yellow), -4px 4px 0 var(--sky);
}

.hero-toys {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-toys .doodle [stroke="#111"] {
  stroke: #fff5db;
}

.hero-toys .doodle circle[fill="#111"] {
  fill: #fff5db;
}

.hero-toys .f-pumped .doodle circle[fill="#111"] {
  fill: var(--forest);
}

.hero-toys .floater,
.hero-toys .note {
  pointer-events: auto;
}

.note {
  position: absolute;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--yellow);
  transform: rotate(-6deg);
  pointer-events: none;
}

.note-hold {
  right: 12%;
  top: 22%;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes blob-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(18px, -14px) rotate(6deg);
  }
}

@keyframes cue-bounce {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 10px;
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  42% {
    translate: 2px -7px;
    rotate: -1.2deg;
  }
  68% {
    translate: -1px -3px;
    rotate: 0.9deg;
  }
}

@keyframes drop-in {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(-70px) rotate(-18deg) scale(0.45);
  }
  72% {
    opacity: 1;
    transform: translateY(10px) rotate(5deg) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes doodle-drift {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  35% {
    translate: var(--dx, 8px) var(--dy, -10px);
    rotate: var(--spin, 5deg);
  }
  70% {
    translate: calc(var(--dx, 8px) * -0.7) calc(var(--dy, -10px) * 0.4);
    rotate: calc(var(--spin, 5deg) * -0.6);
  }
}

/* ------------------------------------------------------------
   Stickers + floaters
   ------------------------------------------------------------ */
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  user-select: none;
  border: 2px solid var(--forest);
  box-shadow: 3px 3px 0 var(--forest);
}

.sticker-oval {
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
}

.sticker-rect {
  padding: 0.55rem 0.8rem;
  border-radius: 4px 14px 6px 12px;
}

.sticker-patch {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  flex-direction: column;
  text-align: center;
  font-size: 0.62rem;
  padding: 0.5rem;
}

.sticker-yellow {
  background: var(--yellow);
  color: var(--forest);
}
.sticker-cream {
  background: var(--cream);
  color: var(--forest);
}
.sticker-orange {
  background: var(--orange);
  color: var(--forest);
}
.sticker-sky {
  background: var(--sky);
  color: var(--forest);
}
.sticker-blue {
  background: var(--blue);
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 3px 3px 0 var(--forest);
}

.floater-slot {
  position: absolute;
  z-index: var(--z-float);
  opacity: 0;
  pointer-events: none;
}

.floater-slot .floater {
  pointer-events: auto;
}

body.is-ready .floater-slot {
  opacity: 1;
}

body.is-ready:not(.is-exploding) .floater-slot {
  animation: doodle-drift var(--drift-t, 5.4s) ease-in-out infinite;
  animation-delay: var(--drift-d, 0s);
}

.floater-slot:has(.is-dragging) {
  animation-play-state: paused;
}

.floater {
  cursor: grab;
  touch-action: none;
  will-change: transform;
  transform: translate(var(--mx, 0px), var(--my, 0px)) rotate(var(--rot, 0deg));
}

.floater-gfx {
  display: block;
}

.doodle-wrap {
  width: 92px;
  background: none;
  border: 0;
  padding: 0;
}

.doodle {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}

.f-hold-orange {
  top: 10%;
  left: 4%;
  width: 96px;
  --drift-t: 5.2s;
  --drift-d: 0s;
  --dx: 10px;
  --dy: -14px;
  --spin: 6deg;
}
.f-hold-sky {
  top: 36%;
  left: 3%;
  width: 88px;
  --drift-t: 6.4s;
  --drift-d: -1.1s;
  --dx: -12px;
  --dy: -8px;
  --spin: -5deg;
}
.f-helmet {
  top: 9%;
  right: 5%;
  width: 90px;
  --drift-t: 4.8s;
  --drift-d: -0.4s;
  --dx: 8px;
  --dy: 12px;
  --spin: 7deg;
}
.f-biner {
  top: 38%;
  right: 5%;
  width: 52px;
  --drift-t: 7s;
  --drift-d: -2.2s;
  --dx: -9px;
  --dy: 10px;
  --spin: -6deg;
}
.f-buddies {
  bottom: 8%;
  left: 4%;
  width: 136px;
  --drift-t: 6.8s;
  --drift-d: -0.8s;
  --dx: 11px;
  --dy: -10px;
  --spin: 4deg;
}
.f-route {
  bottom: 7%;
  right: 4%;
  width: 56px;
  --drift-t: 5.6s;
  --drift-d: -1.6s;
  --dx: -7px;
  --dy: -13px;
  --spin: -4deg;
}
.f-eight {
  top: 24%;
  right: 4%;
  width: 58px;
  --drift-t: 4.6s;
  --drift-d: -0.2s;
  --dx: 9px;
  --dy: 8px;
  --spin: 8deg;
}
.f-pumped {
  bottom: 34%;
  right: 20%;
  width: 118px;
  --drift-t: 6.2s;
  --drift-d: -1.9s;
  --dx: -10px;
  --dy: -11px;
  --spin: -7deg;
}
.f-chalk {
  top: 60%;
  left: 4%;
  width: 76px;
  --drift-t: 5.8s;
  --drift-d: -2.6s;
  --dx: 7px;
  --dy: 9px;
  --spin: 5deg;
}

.floater.is-dragging {
  cursor: grabbing;
  z-index: calc(var(--z-float) + 5);
}

.floater.is-dragging .floater-gfx {
  animation: none;
}

.floater.is-wiggle {
  animation: wiggle 0.55s var(--ease-snap);
}

@keyframes wiggle {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-11deg) translateY(-4px);
  }
  55% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0);
  }
}

.hold svg,
.shoe svg,
.biner svg,
.chalkbag svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* ------------------------------------------------------------
   Manifesto
   ------------------------------------------------------------ */
.manifesto {
  background:
    radial-gradient(circle at 18% 22%, color-mix(in srgb, var(--yellow) 28%, transparent), transparent 22%),
    radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--sky) 26%, transparent), transparent 20%),
    radial-gradient(circle at 70% 78%, color-mix(in srgb, var(--orange) 18%, transparent), transparent 24%),
    var(--cream);
  color: var(--forest);
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(0.7rem, 2vw, 1.6rem) 0;
  overflow: visible;
  margin-top: -2px;
}

.manifesto::before {
  background: var(--cream);
  top: -3.1rem;
  height: calc(3.2rem + 10px);
}

.mani-wall {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 0.7rem 0.4rem;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.mani-toys {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.mani-toy {
  position: absolute;
  overflow: visible;
}

.mani-eight {
  left: 36%;
  top: 38%;
  width: 58px;
  rotate: -22deg;
}

.mani-biner {
  right: 6%;
  top: 44%;
  width: 42px;
  rotate: 18deg;
}

.mani-rope {
  left: 4%;
  bottom: 18%;
  width: 108px;
  rotate: -8deg;
}

.line {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.82;
  font-size: clamp(2.8rem, 8.4vw, 5.8rem);
  overflow: hidden;
  z-index: 5;
  position: relative;
  padding: 0.12em 0 0.08em;
}

.line span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-rock);
}

.line.is-in span {
  transform: none;
}

.line-1 {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}
.line-2 {
  grid-column: 2;
  grid-row: 2;
  text-align: right;
  align-self: center;
}
.line-3 {
  grid-column: 1 / -1;
  grid-row: 3;
}

.shot {
  margin: 0;
  position: relative;
  justify-self: center;
  align-self: start;
  height: max-content;
  width: min(100%, 340px);
  transform: rotate(var(--tilt, -4deg));
  transition: transform 0.28s var(--ease-hold), box-shadow 0.28s var(--ease-hold);
  transform-style: preserve-3d;
  z-index: 2;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92);
}

.shot figcaption {
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.38rem 0.38rem;
  color: color-mix(in srgb, var(--forest) 70%, transparent);
}

.shot-pin {
  --tilt: -7deg;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  background: #fff;
  border: 9px solid #fff;
  box-shadow: 4px 8px 0 color-mix(in srgb, var(--forest) 18%, transparent);
}

.shot-pin img {
  aspect-ratio: 4 / 5;
  object-position: center 70%;
}

.pin {
  position: absolute;
  top: -11px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  background: radial-gradient(circle at 35% 30%, #fff5db, var(--orange) 46%, #9a4a12 78%);
  border-radius: 50%;
  box-shadow: 1px 3px 0 var(--forest);
  z-index: 2;
}

.shot-tape {
  --tilt: 6deg;
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  width: min(100%, 280px);
  background: var(--forest);
  border: 3px solid var(--forest);
  box-shadow: 5px 5px 0 var(--sky);
}

.shot-tape img {
  aspect-ratio: 3 / 4;
}

.shot-tape figcaption {
  color: var(--cream);
}

.shot-pola {
  --tilt: -4deg;
  grid-column: 2;
  grid-row: 4;
  justify-self: end;
  padding: 0.5rem 0.5rem 1.45rem;
  border: 1px solid color-mix(in srgb, var(--forest) 18%, transparent);
  box-shadow: 6px 8px 0 color-mix(in srgb, var(--forest) 14%, transparent);
  background: #fffaf0;
}

.shot-pola img {
  aspect-ratio: 3 / 4;
  object-position: 50% 50%;
}

/* Resting manifesto tilts must beat [data-reveal].is-in { transform: none }. */
.mani-wall .shot[data-reveal] {
  transform: translateY(28px) rotate(var(--tilt, -4deg));
}

.mani-wall .shot[data-reveal].is-in {
  transform: rotate(var(--tilt, -4deg));
}

@media (hover: hover) and (pointer: fine) {
  .mani-wall .shot[data-reveal].is-in:hover {
    z-index: 6;
    transform: rotate(var(--tilt, -4deg)) translateY(-10px) scale(1.04);
  }

  .mani-wall .shot-pin[data-reveal].is-in:hover {
    box-shadow: 8px 16px 0 color-mix(in srgb, var(--forest) 22%, transparent);
  }

  .mani-wall .shot-tape[data-reveal].is-in:hover {
    box-shadow: 9px 12px 0 var(--sky);
  }

  .mani-wall .shot-pola[data-reveal].is-in:hover {
    box-shadow: 10px 16px 0 color-mix(in srgb, var(--forest) 18%, transparent);
  }
}

.clip-pin {
  position: absolute;
  top: -16px;
  left: 18%;
  width: 22px;
  height: 34px;
  background: linear-gradient(#c5cdd2, #8d959b);
  border-radius: 3px 3px 10px 10px;
  box-shadow: 1px 2px 0 var(--forest);
  z-index: 3;
  transform: rotate(-12deg);
}

.clip-pin::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 12px;
  height: 16px;
  border: 2px solid #5a6166;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.tape {
  position: absolute;
  top: -12px;
  left: 28%;
  width: 78px;
  height: 22px;
  background: color-mix(in srgb, var(--yellow) 82%, transparent);
  transform: rotate(-8deg);
  mix-blend-mode: multiply;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--forest) 20%, transparent);
}

.tape-orange {
  background: color-mix(in srgb, var(--orange) 78%, transparent);
  left: 16%;
}

.tape-sky {
  background: color-mix(in srgb, var(--sky) 82%, transparent);
}

.tape-2 {
  left: auto;
  right: 12%;
  top: -8px;
  transform: rotate(14deg);
}

.tape-yellow {
  background: color-mix(in srgb, var(--yellow) 88%, transparent);
  left: 42%;
}

.punch {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.2rem, 4vw, 3rem);
  background: var(--yellow);
  color: var(--forest);
  padding: clamp(2.4rem, 5vw, 3.4rem) var(--pad) clamp(3.8rem, 7vw, 5.2rem);
  margin-left: calc(var(--pad) * -1);
  margin-right: calc(var(--pad) * -1);
  margin-bottom: -2.6rem;
}

.punch::before {
  clip-path: polygon(
    0 100%,
    0 56%,
    7% 82%,
    18% 28%,
    29% 74%,
    41% 24%,
    53% 80%,
    65% 36%,
    76% 70%,
    88% 30%,
    100% 64%,
    100% 100%
  );
}

.punch h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.88;
  font-size: clamp(2.2rem, 7.4vw, 5.4rem);
  max-width: 14ch;
}

.punch p {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   About
   ------------------------------------------------------------ */
.about {
  background: var(--sky);
  color: var(--forest);
  margin-top: -2px;
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.kicker {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  font-size: clamp(2.5rem, 7.4vw, 5.4rem);
  text-wrap: balance;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 38ch;
}

.lede + .lede {
  color: color-mix(in srgb, var(--forest) 78%, transparent);
}

.rules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.stamp {
  border: 3px solid var(--forest);
  padding: 0.55rem 0.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.stamp-alt {
  transform: rotate(4deg);
  background: var(--cream);
}

.about-aside {
  position: relative;
  min-height: 240px;
  overflow: visible;
}

.about-wall {
  position: absolute;
  inset: 0 -4% 0 0;
  width: auto;
  height: auto;
  max-width: none;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  --dx: 5px;
  --dy: -7px;
  --spin: 1.15deg;
}

body.is-ready:not(.is-exploding) .about-wall {
  animation: doodle-drift 7.8s ease-in-out infinite;
  animation-delay: 0.35s;
}

.about-aside .sticker,
.about-aside .note {
  z-index: 2;
}

.about-aside .sticker-patch {
  position: relative;
}

/* ------------------------------------------------------------
   Cooking
   ------------------------------------------------------------ */
.cooking {
  background: var(--orange);
  color: var(--forest);
  margin-top: -2px;
}

.cooking-head {
  text-align: left;
  max-width: 14ch;
}

.cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.85rem;
  margin-top: 2.4rem;
  align-items: center;
}

.cloud .sticker {
  animation: sticker-idle 5s var(--ease-hold) infinite;
}

.cloud .sticker:nth-child(2n) {
  animation-delay: -1.2s;
}
.cloud .sticker:nth-child(3n) {
  animation-delay: -2.4s;
  transform: rotate(-6deg);
}
.cloud .sticker:nth-child(4n) {
  transform: rotate(8deg);
}

@keyframes sticker-idle {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

.cooking .whisper {
  margin: 2rem 0 0;
  font-size: 1.15rem;
  max-width: 28ch;
}

/* ------------------------------------------------------------
   People
   ------------------------------------------------------------ */
.people {
  background: var(--cream);
  color: var(--forest);
  overflow: visible;
  margin-top: -2px;
}

.people-copy {
  max-width: 16ch;
}

.strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin: 2.4rem 0;
  padding: 0.45rem 0.35rem;
  overflow: visible;
}

.polaroid {
  background: #fffaf0;
  padding: 0.65rem 0.65rem 1.7rem;
  border: 1px solid color-mix(in srgb, var(--forest) 18%, transparent);
  box-shadow: 4px 8px 0 color-mix(in srgb, var(--forest) 16%, transparent);
  max-width: 340px;
  position: relative;
}

.polaroid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.88);
}

.polaroid figcaption {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--forest) 70%, transparent);
}

/* Resting tilts must beat [data-reveal].is-in { transform: none }. */
#people .strip .polaroid {
  --tilt: 0deg;
  transform: rotate(var(--tilt));
  transform-style: preserve-3d;
}

#people .strip .polaroid[data-reveal] {
  transform: translateY(28px) rotate(var(--tilt));
}

#people .strip .polaroid[data-reveal].is-in {
  transform: rotate(var(--tilt));
}

#people .strip .polaroid.p-tilt-l {
  --tilt: -9deg;
}

#people .strip .polaroid.p-shift {
  --tilt: 7deg;
}

#people .strip .polaroid.p-tilt-r {
  --tilt: -6deg;
}

.strip .polaroid {
  max-width: none;
}

.strip .polaroid img {
  aspect-ratio: 1 / 1;
}

.strip .polaroid.p-tilt-l img {
  object-position: center 42%;
}

.strip .polaroid.p-shift img {
  object-position: center 38%;
}

.strip .polaroid.p-tilt-r img {
  object-position: center 72%;
}

.people h2 + h2 {
  margin-top: 0.35rem;
}

/* ------------------------------------------------------------
   Join
   ------------------------------------------------------------ */
.join {
  background:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--orange) 45%, transparent), transparent 26%),
    radial-gradient(circle at 88% 80%, color-mix(in srgb, var(--sky) 40%, transparent), transparent 28%),
    var(--yellow);
  color: var(--forest);
  margin-top: -2px;
}

.join-stage {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-top: 1.2rem;
}

.join-title {
  max-width: 10ch;
}

.join .sub {
  max-width: 32ch;
  font-size: 1.15rem;
}

.join-stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.join-sticker-a {
  position: absolute;
  top: -0.4rem;
  right: 6%;
  transform: rotate(12deg);
}

.join-sticker-b {
  position: absolute;
  right: -1%;
  top: 42%;
  transform: rotate(18deg);
  font-size: 0.68rem;
}

.join-sticker-c {
  position: absolute;
  left: -1.45rem;
  top: -0.45rem;
  z-index: 5;
  transform: rotate(-10deg);
  pointer-events: none;
}

.join-card {
  margin-top: 1.6rem;
  position: relative;
  z-index: 2;
  max-width: 640px;
  background: var(--cream);
  border: 4px solid var(--forest);
  box-shadow: 12px 12px 0 var(--orange), -6px 6px 0 var(--sky);
  padding: 2rem 1.4rem 1.5rem 2.45rem;
  transform: rotate(-1.4deg);
}

.join-ticket-edge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  background:
    radial-gradient(circle at 0 12px, transparent 7px, var(--forest) 8px, var(--forest) 9px, var(--cream) 10px) 0 0 / 18px 24px repeat-y;
}

.join-tag {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.join-serial {
  margin: 0.15rem 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.join-hold {
  position: absolute;
  z-index: 1;
  width: 120px;
  pointer-events: none;
  filter: drop-shadow(3px 4px 0 var(--forest));
}

.join-hold-1 {
  right: -10px;
  top: -80px;
  transform: rotate(18deg);
}

.join-hold-2 {
  left: -86px;
  bottom: -52px;
  width: 96px;
  transform: rotate(-22deg);
}

.join-hold-3 {
  right: 8%;
  bottom: -36px;
  width: 70px;
  transform: rotate(16deg);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.field {
  background: var(--cream);
  color: var(--forest);
  border: 3px solid var(--forest);
  border-radius: 999px;
  min-height: 58px;
  padding: 0.85rem 1.2rem;
  font-size: 16px;
  width: 100%;
}

.field:focus {
  outline: none;
  background: #fff;
  box-shadow: 4px 4px 0 var(--sky);
}

.field::placeholder {
  color: color-mix(in srgb, var(--forest) 45%, transparent);
}

.clip {
  appearance: none;
  border: 3px solid var(--forest);
  background: var(--orange);
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 58px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: 4px 4px 0 var(--forest);
  transition: transform 0.25s var(--ease-snap), background 0.2s ease;
}

.clip:hover {
  background: var(--sky);
  transform: rotate(-1.5deg) scale(1.04);
}

.clip:disabled {
  opacity: 0.7;
  cursor: wait;
}

.micro-legal {
  margin: 0.85rem 0 0;
  padding-left: 0.45rem;
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--forest) 70%, transparent);
}

.micro-legal a {
  color: var(--orange);
}

#form-live {
  min-height: 1.4em;
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
}

#form-live[data-kind="err"] {
  color: #a33a00;
}

#form-live[data-kind="warn"] {
  color: var(--blue);
}

#form-live[data-kind="ok"] {
  color: var(--forest);
}

.join-card.is-clipped form,
.join-card.is-clipped .join-tag,
.join-card.is-clipped .join-serial {
  display: none;
}

.success {
  display: none;
}

.join-card.is-clipped .success,
.join-card.is-clipped .success[hidden] {
  display: block;
}

.success h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.04em;
}

.success p {
  margin: 0.35rem 0 0;
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 22ch;
}

.form-biner {
  position: absolute;
  right: 18px;
  top: -78px;
  width: 72px;
  color: var(--orange);
  transform: rotate(18deg);
  transition: transform 0.55s var(--ease-snap);
  pointer-events: none;
  filter: drop-shadow(3px 3px 0 var(--forest));
}

.form-biner.is-locked {
  transform: rotate(0deg);
}

.form-biner .gate {
  transform-origin: 60px 52px;
  transition: transform 0.45s var(--ease-snap);
}

.form-biner.is-locked .gate {
  transform: rotate(-28deg);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--blue);
  color: var(--cream);
  padding: 1.15rem var(--pad) 6.6rem;
  position: relative;
  z-index: 7;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.site-footer::before {
  clip-path: polygon(
    0 100%,
    0 48%,
    13% 80%,
    24% 28%,
    37% 72%,
    50% 22%,
    62% 78%,
    74% 34%,
    86% 70%,
    100% 40%,
    100% 100%
  );
}

.chaos {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  letter-spacing: -0.03em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.4rem;
}

.chaos:hover {
  color: var(--yellow);
}

.foot-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.foot-brand .brand-mark {
  background: var(--cream);
}

.foot-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.foot-tag {
  margin: 0 0 1.15rem;
}

.foot-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.2rem;
  font-size: 0.82rem;
  opacity: 0.9;
}

.foot-meta a {
  color: var(--yellow);
}

.privacy-panel {
  background: var(--cream);
  color: color-mix(in srgb, var(--forest) 62%, var(--cream));
  padding: 2.4rem var(--pad) 1.1rem;
  position: relative;
  z-index: 8;
}

.privacy-panel::before {
  clip-path: polygon(
    0 100%,
    0 64%,
    10% 30%,
    22% 78%,
    34% 36%,
    46% 82%,
    58% 28%,
    70% 70%,
    82% 38%,
    93% 76%,
    100% 44%,
    100% 100%
  );
}

.privacy-panel .wrap {
  max-width: none;
}

.privacy-panel h2 {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.2rem;
}

.privacy-panel p {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.35;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .privacy-panel p {
    white-space: normal;
  }
}

/* ------------------------------------------------------------
   Cursor
   ------------------------------------------------------------ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(var(--z-cursor) - 1);
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid var(--orange);
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
}

.cursor-dot.is-on {
  opacity: 1;
}

.cursor-dot.is-grab {
  background: var(--orange);
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(var(--z-cursor) - 2);
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
}

.cursor-ring.is-on {
  opacity: 0.85;
}

.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.45rem;
  border: 1.5px solid var(--forest);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.cursor-label.is-on {
  opacity: 1;
}

.chalk {
  position: fixed;
  width: 11px;
  height: 11px;
  margin: -5px 0 0 -5px;
  border-radius: 50% 40% 55% 45%;
  background: var(--yellow);
  pointer-events: none;
  z-index: 68;
  opacity: 0;
}

.chalk:nth-child(3n) {
  background: var(--orange);
  width: 8px;
  height: 8px;
}

.chalk:nth-child(4n) {
  background: var(--sky);
}

.chalk.is-live {
  animation: chalk-pop 0.55s ease-out forwards;
}

@keyframes chalk-pop {
  0% {
    opacity: 0.9;
    transform: scale(1) rotate(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.15) translateY(16px) rotate(50deg);
  }
}

/* ------------------------------------------------------------
   Reveals
   ------------------------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-rock), transform 0.8s var(--ease-rock);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
.chip-join-short {
  display: none;
}

@media (max-width: 767px) {
  .chip-join-label {
    display: none;
  }

  .chip-join-short {
    display: inline;
  }

  .f-pumped,
  .f-route,
  .f-chalk,
  .f-eight,
  .join-hold,
  .join-sticker-b {
    display: none;
  }

  .f-hold-orange {
    top: 10%;
    left: 2%;
    width: 78px;
  }
  .f-hold-sky {
    top: auto;
    bottom: 18%;
    left: 2%;
    width: 72px;
  }
  .f-helmet {
    top: 10%;
    right: 2%;
    width: 72px;
  }
  .f-biner {
    bottom: 18%;
    right: 4%;
    top: auto;
    width: 42px;
  }
  .f-buddies {
    display: none;
  }

  .boot {
    padding: 1.25rem;
  }

  .boot-copy {
    margin: 0;
  }

  .boot-title {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .rope-svg.is-desktop {
    display: none;
  }
  .rope-svg.is-mobile {
    display: block;
  }

  .hero-logo {
    filter: none;
  }

  .cursor-label,
  .cursor-dot,
  .cursor-ring,
  .chalk {
    display: none;
  }

  .line-3 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    margin-top: 0.4rem;
  }

  .shot {
    width: min(100%, 230px);
  }

  .shot-tape {
    width: min(100%, 196px);
  }

  .mani-eight {
    width: 46px;
    left: 42%;
    top: 34%;
  }

  .mani-biner {
    width: 34px;
    right: 4%;
    top: 48%;
  }

  .mani-rope {
    width: 78px;
  }

  .join-sticker-a,
  .join-sticker-c {
    font-size: 0.62rem;
  }

  .join-card {
    padding-left: 2.15rem;
  }

  .hero-inner {
    min-height: 100%;
  }

  .about-aside {
    min-height: 16.5rem;
    max-width: none;
    width: min(100%, 22rem);
    margin-left: auto;
  }

  .about-wall {
    inset: auto -6% 4% auto;
    top: 6%;
    width: min(78vw, 17.5rem);
    height: auto;
  }
}

@media (min-width: 768px) {
  .mani-wall {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 0.55rem;
    row-gap: 0.85rem;
    max-width: 1180px;
    align-items: center;
  }

  .line {
    font-size: clamp(3.6rem, 10vw, 8rem);
  }

  .line-1 {
    grid-column: 1 / 7;
    grid-row: 1;
    padding-top: 0;
  }
  .shot-pin {
    grid-column: 7 / 13;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: clamp(360px, 42vw, 520px);
    margin: 0;
  }
  .shot-tape {
    grid-column: 1 / 6;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    width: clamp(300px, 34vw, 460px);
    margin: 0;
  }
  .line-2 {
    grid-column: 6 / 13;
    grid-row: 2;
    text-align: left;
    align-self: center;
    padding-left: 0.2rem;
  }
  .line-3 {
    grid-column: 1 / 8;
    grid-row: 3;
    margin-top: 0;
    font-size: clamp(3rem, 7.4vw, 6.2rem);
  }
  .shot-pola {
    grid-column: 8 / 13;
    grid-row: 3;
    justify-self: end;
    align-self: center;
    width: clamp(320px, 36vw, 480px);
    margin: 0;
  }

  .mani-eight {
    width: 96px;
    left: 44%;
    top: 32%;
  }

  .mani-biner {
    width: 72px;
    right: 4%;
    top: 46%;
  }

  .mani-rope {
    width: 150px;
    left: 22%;
    bottom: 36%;
  }

  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .about-aside {
    min-height: 22rem;
  }

  .strip {
    grid-template-columns: 1.1fr 0.9fr 1fr;
    align-items: start;
  }

  .form-row {
    flex-direction: row;
    align-items: stretch;
  }

  .field {
    flex: 1;
  }

  .p-shift {
    margin-top: 3rem;
  }
}

@media (min-width: 1100px) {
  .hero-inner {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .rope-path,
  .rope-core {
    stroke-dashoffset: 0 !important;
    stroke-dasharray: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  #people .strip .polaroid[data-reveal],
  #people .strip .polaroid[data-reveal].is-in,
  .mani-wall .shot[data-reveal],
  .mani-wall .shot[data-reveal].is-in {
    transform: rotate(var(--tilt, -4deg));
  }

  .floater-slot {
    opacity: 1;
  }

  .boot {
    display: none !important;
  }

  .hero-logo,
  .hero-tag,
  .hero-micro,
  .scroll-cue,
  .cloud .sticker,
  .floater-gfx,
  .splash-sun,
  .splash-blob {
    animation: none !important;
    opacity: 1;
  }
}

body.is-settled .hero-logo,
body.is-settled .hero-tag,
body.is-settled .hero-micro,
body.is-settled .scroll-cue {
  opacity: 1 !important;
  animation: none !important;
  transform: none;
}

body.is-settled .floater-slot {
  opacity: 1 !important;
}
