:root {
  --forest: #1F3B2A;
  --moss: #3F6B3A;
  --leaf: #A8D86A;
  --sage: #C9D8B6;
  --radish: #E2505B;
  --paper: #F1F0E4;
  --ink: #16261C;
  --muted: #3E4F42;
  --light: #D5DECB;
  --shadow: #0E1F14;
  --display: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  --body: "Space Grotesk", system-ui, sans-serif;
  --hand: "Caveat", "Comic Sans MS", cursive;
  --pad: clamp(20px, 4.5vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; font-family: var(--body); font-size: 18px; line-height: 1.5; background: var(--paper); color: var(--ink); overflow-x: hidden; }
h1, h2, h3 { font-family: var(--display); font-weight: 800; margin: 0; }
p { margin: 0; }
img { max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--radish); outline-offset: 3px; border-radius: 4px; }

.hand { font-family: var(--hand); font-weight: 700; }
.leaf { color: var(--leaf); }
.moss { color: var(--moss); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; min-height: 52px; padding: 0 26px;
  border-radius: 999px; background: var(--leaf); color: var(--ink);
  font-weight: 700; text-decoration: none; box-shadow: 5px 5px 0 var(--shadow);
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--shadow); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--shadow); }
.btn-big { min-height: 64px; padding: 0 34px; font-family: var(--display); font-size: 22px; }
.btn-tilt { transform: rotate(-4deg); }
.btn-tilt:hover { transform: rotate(-4deg) translate(-2px, -2px); }
.btn-ghost { background: transparent; color: var(--paper); border: 2px solid var(--paper); box-shadow: none; }
.btn-ghost:hover { box-shadow: none; background: rgba(241,240,228,.1); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px var(--pad); background: var(--forest); color: var(--paper);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 20px; text-decoration: none; }
.brand svg { fill: none; stroke: var(--leaf); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.menu { display: flex; align-items: center; gap: 4px; }
.menu a:not(.btn) { padding: 12px 16px; text-decoration: none; font-weight: 500; }
.menu a:not(.btn):hover { color: var(--leaf); }
.menu .btn { margin-left: 12px; }
.nav-toggle { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--forest); color: var(--paper); padding: 48px var(--pad) 110px; }
.hero-leaf { position: absolute; right: -140px; top: -120px; width: 560px; fill: var(--moss); opacity: .5; transform: rotate(18deg); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: start; }
.hero-kicker { font-size: 34px; color: var(--leaf); transform: rotate(-3deg); transform-origin: left; margin-bottom: 18px; }
.hero h1 { font-size: clamp(64px, 9vw, 116px); line-height: .9; letter-spacing: -.05em; }
.circled { position: relative; display: inline-block; color: var(--leaf); }
.circled svg { position: absolute; left: -8%; top: -18%; width: 116%; height: 136%; fill: none; stroke: var(--radish); stroke-width: 3.5; stroke-linecap: round; overflow: visible; }
.js .circled path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.is-loaded .circled path { animation: draw 1s .5s cubic-bezier(.6,0,.3,1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-pics { position: relative; height: 470px; }
.polaroid { position: absolute; margin: 0; width: 210px; height: 260px; padding: 12px 12px 48px; background: var(--paper); box-shadow: 0 16px 36px rgba(0,0,0,.35); }
.polaroid::before { content: ""; position: absolute; left: 60px; top: -14px; width: 90px; height: 28px; background: rgba(168,216,106,.85); transform: rotate(-4deg); }
.polaroid .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--sage); color: var(--muted); font-size: 14px; }
.polaroid figcaption { position: absolute; left: 0; right: 0; bottom: 10px; text-align: center; font-family: var(--hand); font-size: 24px; color: var(--forest); }
.p1 { left: 10px; top: 20px; transform: rotate(-6deg); }
.p2 { right: 0; top: 70px; transform: rotate(6deg); }
.p2 .ph { background: var(--leaf); color: var(--forest); }
.p2::before { background: rgba(201,216,182,.9); transform: rotate(5deg); }
.sign {
  position: absolute; left: 90px; bottom: 0; padding: 16px 22px;
  border: 3px solid var(--forest); border-radius: 8px; background: var(--paper); color: var(--forest);
  font-family: var(--display); font-size: 24px; line-height: 1.05;
  transform: rotate(-7deg); box-shadow: 0 10px 28px rgba(0,0,0,.3);
}
.hero-bottom { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 28px 40px; margin-top: 48px; }
.hero-bottom p { max-width: 460px; font-size: 20px; color: var(--light); }
.nudge { display: flex; align-items: center; gap: 8px; font-size: 30px; color: var(--leaf); transform: rotate(-6deg); }
.nudge svg { fill: none; stroke: var(--leaf); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Band */
.band {
  position: relative; z-index: 2; margin: -40px -60px 0; padding: 22px 0;
  display: flex; justify-content: center; align-items: center; gap: 28px;
  background: var(--leaf); color: var(--ink); transform: rotate(-2.5deg);
  font-family: var(--display); font-weight: 800; font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -.02em;
  white-space: nowrap; box-shadow: 0 6px 0 var(--forest); overflow: hidden;
}
.band i { flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--radish); }

/* Sections */
.section { padding: 110px var(--pad) 90px; max-width: 1400px; margin: 0 auto; }
.section h2 { color: var(--forest); letter-spacing: -.05em; line-height: .9; }

/* Idee */
.idee-head { position: relative; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 56px; }
.idee h2 { font-size: clamp(56px, 9.5vw, 120px); }
.idee s { text-decoration: none; position: relative; }
.idee s::after { content: ""; position: absolute; left: -8px; right: -8px; top: 46%; height: 8px; border-radius: 8px; background: var(--radish); transform: rotate(-2deg); }
.idee-note { max-width: 330px; font-size: 30px; line-height: 1.15; color: var(--moss); transform: rotate(4deg); }

.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.tile { position: relative; min-height: 240px; padding: 36px; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; }
.tile h3 { font-size: 34px; line-height: 1; letter-spacing: -.02em; }
.tile p { font-size: 17px; }
.wide { grid-column: span 2; }
.t-dark { min-height: 280px; border-radius: 40px 8px 40px 8px; background: var(--forest); color: var(--paper); transform: rotate(-1.2deg); box-shadow: 8px 8px 0 var(--leaf); }
.t-dark h3 { font-size: clamp(36px, 4vw, 52px); letter-spacing: -.03em; }
.t-dark p { color: var(--light); max-width: 560px; font-size: 18px; }
.t-arch { min-height: 280px; border-radius: 999px 999px 32px 32px; background: var(--leaf); transform: rotate(2deg); }
.t-white { border-radius: 32px; background: #fff; border: 3px solid var(--forest); transform: rotate(-2deg); box-shadow: 8px 8px 0 var(--forest); }
.t-white h3 { color: var(--forest); }
.t-white p { color: var(--muted); }
.tape { position: absolute; left: 50%; top: -16px; width: 100px; height: 30px; margin-left: -50px; background: rgba(168,216,106,.85); transform: rotate(-3deg); }
.t-sage { flex-direction: row; align-items: center; justify-content: flex-start; gap: 36px; border-radius: 32px; background: var(--sage); transform: rotate(1deg); }
.t-sage h3 { font-size: 40px; color: var(--forest); margin-bottom: 10px; }
.t-sage p { max-width: 560px; font-size: 18px; color: #2A3A2E; }
.q { flex: none; font-family: var(--display); font-weight: 800; font-size: 150px; line-height: .8; color: var(--forest); }

/* Steps */
.steps { padding-top: 40px; padding-bottom: 110px; }
.steps h2 { font-size: clamp(48px, 7vw, 92px); margin-bottom: 56px; }
.block { display: inline-block; padding: 0 18px 8px; background: var(--forest); color: var(--leaf); transform: rotate(-1.5deg); }
.step-list { position: relative; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; align-items: start; }
.step-list li { display: flex; flex-direction: column; gap: 14px; padding: 28px; border-radius: 28px; background: #fff; border: 3px solid var(--forest); }
.step-list li:nth-child(1) { transform: rotate(-3deg); }
.step-list li:nth-child(2) { transform: rotate(2deg); margin-top: 70px; }
.step-list li:nth-child(3) { transform: rotate(-2deg); }
.step-list li:nth-child(4) { transform: rotate(3deg); margin-top: 70px; }
.step-list h3 { font-size: 28px; color: var(--forest); }
.step-list p { font-size: 16px; color: var(--muted); }
.num { font-family: var(--display); font-weight: 800; font-size: 96px; line-height: .8; color: var(--leaf); -webkit-text-stroke: 3px var(--forest); }
.step-list .hot { background: var(--forest); box-shadow: 8px 8px 0 var(--radish); }
.step-list .hot h3 { color: var(--paper); }
.step-list .hot p { color: var(--light); }
.step-list .hot .num { -webkit-text-stroke: 0; }

/* Join */
.join {
  max-width: 1340px; margin-inline: max(16px, calc((100% - 1340px) / 2));
  padding: 80px var(--pad); border-radius: 120px 40px 120px 40px;
  background: var(--moss); color: var(--paper);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: center;
}
.join h2 { font-size: clamp(56px, 7vw, 84px); line-height: .9; letter-spacing: -.045em; margin-bottom: 24px; }
.join-text p { max-width: 440px; font-size: 19px; color: #E1E8D8; }
.join-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.join-cta .btn:not(.btn-ghost) { box-shadow: 5px 5px 0 var(--forest); }
.events { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.events li { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; border-radius: 22px; background: var(--paper); color: var(--ink); }
.events li:nth-child(1) { transform: rotate(-1.5deg); }
.events li:nth-child(2) { transform: rotate(1.5deg); margin-left: 24px; }
.events li:nth-child(3) { transform: rotate(-1deg); }
.events strong { display: block; font-family: var(--display); font-size: 26px; color: var(--forest); }
.events span { font-size: 15px; color: var(--muted); }
.events em { font-style: normal; font-size: 24px; color: var(--moss); text-align: right; }
.events .dark { background: var(--forest); color: var(--paper); }
.events .dark strong { color: var(--paper); }
.events .dark span { color: var(--sage); }
.events .dark em { color: var(--leaf); }

/* Footer */
.footer { margin-top: 110px; padding: 72px var(--pad) 40px; background: var(--forest); color: var(--light); overflow: hidden; }
.claim { font-family: var(--display); font-weight: 800; font-size: clamp(64px, 13vw, 168px); line-height: .84; letter-spacing: -.06em; color: var(--leaf); margin-left: -.05em; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 24px; border-top: 1.5px solid #3B5A45; font-size: 15px; }
.footer-meta a { margin-right: 20px; }
.footer-meta a:hover { color: var(--leaf); }

/* Tablet */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-pics { height: 380px; max-width: 520px; }
  .idee-head { flex-direction: column; align-items: flex-start; }
  .bento { grid-template-columns: 1fr 1fr; }
  .step-list { grid-template-columns: 1fr 1fr; }
  .step-list li:nth-child(4) { margin-top: 0; }
  .join { grid-template-columns: 1fr; border-radius: 64px 24px 64px 24px; }
}

/* Mobile */
@media (max-width: 680px) {
  body { font-size: 17px; }
  .nav-toggle {
    display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px;
    border: 2px solid var(--leaf); border-radius: 999px; background: none; color: var(--leaf);
    font: 700 16px var(--body); cursor: pointer;
  }
  .brand { font-size: 17px; }
  .menu {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--pad) 24px;
    background: var(--forest); display: none;
  }
  .menu.open { display: flex; }
  .menu a:not(.btn) { padding: 14px 0; border-bottom: 1px solid #3B5A45; }
  .menu .btn { margin: 16px 0 0; align-self: flex-start; }
  .hero { padding-bottom: 90px; }
  .hero-kicker { font-size: 28px; }
  .hero-pics { height: 340px; }
  .polaroid { width: 160px; height: 200px; padding-bottom: 40px; }
  .polaroid figcaption { font-size: 20px; }
  .p2 { right: 10px; top: 40px; }
  .sign { left: 20px; font-size: 20px; }
  .hero-bottom p { font-size: 18px; }
  .band { margin-top: -30px; }
  .bento { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .t-arch { border-radius: 200px 200px 28px 28px; }
  .t-sage { flex-direction: column; align-items: flex-start; gap: 12px; }
  .q { font-size: 100px; }
  .step-list { grid-template-columns: 1fr; gap: 28px; }
  .step-list li:nth-child(n) { margin-top: 0; }
  .join { margin-inline: 12px; padding: 56px 24px; border-radius: 48px 20px 48px 20px; }
  .events li { flex-direction: column; align-items: flex-start; gap: 6px; }
  .events li:nth-child(2) { margin-left: 0; }
  .events em { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .circled path { stroke-dashoffset: 0; animation: none !important; }
  .btn { transition: none; }
}
