/* ShedMap marketing site. A painted farm-gate sign: forest green enamel, linen, honey lettering.
   Colour strategy: full palette, three committed blocks (green, linen, honey). One look, no theme switch. */

@import url("assets/fonts/fonts.css");

:root {
  color-scheme: light;
  --green: #163319;
  --green-deep: #0e2211;
  --green-2: #234626;
  --green-3: #2f5a33;
  --linen: #f4efe2;
  --linen-2: #eae3d1;
  --linen-3: #dfd6bf;
  --honey: #c68a4c;
  --honey-deep: #a86f30;
  --honey-pale: #e9c89c;
  --ink: #1b1f1a;
  --ink-2: #4d574c;
  --ink-3: #7d867b;
  --cream-text: #f4efe2;
  --cream-text-2: #cfd8c9;
  --terracotta: #b8593b;
  --radius: 18px;
  --radius-btn: 14px;
  --font-display: "Bricolage Grotesque", "Arial Black", Impact, sans-serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --nav-h: 72px;
  --gutter: clamp(16px, 4vw, 40px);
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

p {
  margin: 0;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0 1.4rem;
  border-radius: var(--radius-btn);
  background: var(--honey);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease);
}

.btn:hover {
  background: var(--honey-pale);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px);
}

.btn.on-honey {
  background: var(--green);
  color: var(--cream-text);
}

.btn.on-honey:hover {
  background: var(--green-2);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
}

.store {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.7rem;
  align-items: center;
  min-height: 58px;
  padding: 0.5rem 1.2rem 0.5rem 1rem;
  border-radius: var(--radius-btn);
  background: var(--linen);
  color: var(--green-deep);
  line-height: 1.05;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease);
}

.store:hover {
  background: #fff;
  transform: translateY(-2px);
}

.store:active {
  transform: translateY(1px);
}

.store .icon {
  grid-row: 1 / 3;
  width: 1.75rem;
  height: 1.75rem;
}

.store small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-2);
}

.store strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-h);
  background: var(--green);
  color: var(--cream-text);
}

.nav .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.brand-mark img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-weight: 700;
  font-size: 1rem;
}

.nav-links a:not(.btn) {
  padding-bottom: 2px;
  background: linear-gradient(var(--honey), var(--honey)) no-repeat left bottom / 0 2px;
  transition: background-size 260ms var(--ease);
}

.nav-links a:not(.btn):hover {
  background-size: 100% 2px;
}

.nav-links .btn {
  min-height: 44px;
  padding-inline: 1.1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  color: var(--cream-text);
  border-radius: 10px;
}

.nav-toggle .icon {
  width: 1.7rem;
  height: 1.7rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--green);
    border-top: 1px solid var(--green-3);
    padding: 0.5rem var(--gutter) 1.25rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a:not(.btn) {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--green-3);
    background: none;
  }

  .nav-links .btn {
    margin-top: 1rem;
    justify-content: center;
  }
}

/* ---------- Hero (green drench) ---------- */

.hero {
  position: relative;
  background: var(--green);
  color: var(--cream-text);
  overflow: hidden;
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  align-items: center;
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

.hero h1 {
  font-size: clamp(3.1rem, 7.6vw, 6.8rem);
  line-height: 0.94;
  max-width: 10ch;
}

.hero h1 span {
  color: var(--honey);
}

.hero .lede {
  margin-top: 1.5rem;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--cream-text-2);
  max-width: 34ch;
}

.hero .store-row {
  margin-top: 2.25rem;
}

.hero-art {
  position: relative;
  min-height: 640px;
}

.hero-art .shed {
  /* The artwork sits in the middle half of its canvas, so it is scaled well past the column. */
  position: absolute;
  left: -30%;
  top: 50%;
  transform: translateY(-50%);
  width: 140%;
  max-width: none;
  height: auto;
  opacity: 0.95;
}

.hero-art .phone {
  position: absolute;
  right: -2%;
  bottom: -8%;
  width: 224px;
  transform: rotate(5deg);
}

.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  padding: 0.75rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  transition: transform 300ms var(--ease);
}

.sticker small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  margin-top: 0.25rem;
  color: var(--green-2);
}

.hero-art .sticker {
  right: 24%;
  top: 14%;
  transform: rotate(-9deg);
}

.hero-art .sticker:hover {
  transform: rotate(3deg) scale(1.06);
}

.phone {
  width: 236px;
  aspect-ratio: 402 / 874;
  padding: 9px;
  border-radius: 40px;
  background: #0b120c;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  background: #fbfbf9;
}

@media (max-width: 960px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-art {
    min-height: 480px;
  }

  .hero-art .shed {
    width: min(100%, 480px);
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 0;
  }

  .hero-art {
    min-height: 470px;
    margin-top: 0.5rem;
  }

  .hero-art .shed {
    width: 125%;
    left: -22%;
  }

  .phone {
    width: 180px;
    padding: 7px;
    border-radius: 30px;
  }

  .phone img {
    border-radius: 24px;
  }

  .hero-art .phone {
    right: 2%;
    bottom: 0;
    width: 172px;
  }

  .sticker {
    width: 104px;
    height: 104px;
    font-size: 0.85rem;
  }

  .hero-art .sticker {
    right: 6%;
    top: 4%;
  }
}

/* ---------- Section rhythm ---------- */

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.section h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  max-width: 16ch;
}

.section .sub {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 50ch;
}

/* ---------- How it works: a lane with three stops ---------- */

.how .head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lane {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  counter-reset: stop;
}

.lane::before {
  content: "";
  position: absolute;
  left: 2.25rem;
  right: 2.25rem;
  top: 2.4rem;
  border-top: 3px dashed var(--honey);
  opacity: 0.8;
}

.lane li {
  position: relative;
  padding-top: 6rem;
}

.lane li::before {
  counter-increment: stop;
  content: counter(stop);
  position: absolute;
  top: 0;
  left: 0;
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--honey);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  box-shadow: 0 0 0 10px var(--linen);
}

.lane h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.lane p {
  color: var(--ink-2);
  max-width: 34ch;
}

@media (max-width: 760px) {
  .lane {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .lane::before {
    left: 2.4rem;
    right: auto;
    top: 2rem;
    bottom: 2rem;
    border-top: 0;
    border-left: 3px dashed var(--honey);
  }

  .lane li {
    padding-top: 0;
    padding-left: 6.4rem;
    min-height: 4.8rem;
  }
}

/* ---------- The board (green drench) ---------- */

.board {
  background: var(--green);
  color: var(--cream-text);
  overflow: hidden;
}

.board .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.board h2 {
  color: var(--cream-text);
}

.board .sub {
  color: var(--cream-text-2);
}

.menu {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
}

.menu li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.menu .dots {
  flex: 1;
  border-bottom: 3px dotted var(--green-3);
  transform: translateY(-0.35em);
  min-width: 2rem;
}

.menu .price {
  color: var(--honey);
  white-space: nowrap;
}

.board .note {
  margin-top: 1.75rem;
  font-size: 0.98rem;
  color: var(--cream-text-2);
  max-width: 44ch;
}

.board-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.board-art .phone {
  transform: rotate(-4deg);
  width: 260px;
}

.board-art .motif {
  position: absolute;
  width: 150px;
  opacity: 0.55;
  pointer-events: none;
}

.board-art .motif-a {
  top: 2%;
  left: 2%;
}

.board-art .motif-b {
  bottom: 4%;
  right: 4%;
  width: 120px;
}

@media (max-width: 900px) {
  .board .wrap {
    grid-template-columns: 1fr;
  }

  .board-art {
    min-height: 480px;
  }
}

/* ---------- Owners (honey drench) ---------- */

.owners {
  background: var(--honey);
  color: var(--green-deep);
  overflow: hidden;
}

.owners .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.owners h2 {
  color: var(--green-deep);
}

.owners .price-line {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.owners .price-line strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-deep);
}

.owners .price-line span {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-2);
}

.perks {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  max-width: 44ch;
}

.perks li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.6rem;
  align-items: start;
}

.perks .icon {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--green-deep);
}

.perks strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.perks p {
  color: var(--green-2);
}

.owners .btn {
  margin-top: 2.25rem;
}

.owners-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.owners-art .phone {
  transform: rotate(3deg);
  width: 250px;
  box-shadow: 0 30px 60px rgba(60, 35, 5, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.owners-art .sticker {
  background: var(--green);
  color: var(--honey);
  left: 8%;
  top: 8%;
  transform: rotate(-10deg);
  box-shadow: 0 16px 30px rgba(60, 35, 5, 0.3);
}

.owners-art .sticker small {
  color: var(--cream-text-2);
}

.owners-art .sticker:hover {
  transform: rotate(2deg) scale(1.06);
}

@media (max-width: 900px) {
  .owners .wrap {
    grid-template-columns: 1fr;
  }

  .owners-art {
    min-height: 480px;
  }
}

/* ---------- FAQ: numbered notices, first one open ---------- */

.faq .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.faq-head {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.faq-head .sub {
  color: var(--honey-deep);
  font-weight: 700;
}

.faq-list {
  border-top: 3px solid var(--green);
}

.faq-list details {
  border-bottom: 2px solid var(--linen-3);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr) 2.6rem;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--honey);
  font-variant-numeric: tabular-nums;
}

.faq-list .q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  transition: color 200ms var(--ease);
}

.faq-list summary:hover .q {
  color: var(--green-3);
}

.faq-list .toggle {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--honey);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  transition: transform 320ms var(--ease), background-color 200ms var(--ease);
}

.faq-list .toggle .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.faq-list summary:hover .toggle {
  background: var(--honey-pale);
}

.faq-list details[open] .toggle {
  transform: rotate(45deg);
  background: var(--green);
  color: var(--honey);
}

.faq-list .answer {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 360ms var(--ease);
}

.faq-list details.is-closing .answer {
  grid-template-rows: 0fr;
}

.faq-list .answer > div {
  min-height: 0;
  overflow: hidden;
}

.faq-list .answer p {
  padding: 0 0 1.5rem 4.2rem;
  color: var(--ink-2);
  max-width: 58ch;
  font-size: 1.08rem;
}

.faq-list .answer a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

  .faq-head {
    position: static;
  }

  .faq-list summary {
    grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem;
    gap: 0.75rem;
  }

  .faq-list .num {
    font-size: 1.2rem;
  }

  .faq-list .toggle {
    width: 2.4rem;
    height: 2.4rem;
  }

  .faq-list .answer p {
    padding-left: 0;
  }
}

/* ---------- Footer (green) ---------- */

.footer {
  position: relative;
  background: var(--green);
  color: var(--cream-text-2);
  padding-block: 4rem 2rem;
  overflow: hidden;
}

.footer::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 420px;
  height: 420px;
  background: url("assets/img/shed-mark-white.png") no-repeat center / contain;
  opacity: 0.12;
  pointer-events: none;
}

.footer .wrap {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--honey);
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer a:hover {
  color: var(--cream-text);
}

.footer .brand {
  color: var(--cream-text);
}

.footer .tagline {
  margin-top: 0.9rem;
  max-width: 30ch;
}

.footer .store-row {
  margin-top: 1.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--green-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--cream-text-2);
}

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

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

/* ---------- Legal pages ---------- */

.legal {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem);
}

.legal .wrap {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.legal-toc h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--honey-deep);
  margin-bottom: 0.75rem;
}

.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
}

.legal-toc a:hover {
  color: var(--ink);
}

.legal-body {
  max-width: 68ch;
}

.legal-body h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.legal-body .updated {
  margin-top: 0.9rem;
  color: var(--ink-3);
  font-size: 0.95rem;
}

.legal-body .intro {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--ink-2);
}

.legal-body section {
  margin-top: 2.5rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.legal-body h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.legal-body p + p,
.legal-body ul + p,
.legal-body p + ul {
  margin-top: 0.75rem;
}

.legal-body ul {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.legal-body .links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.legal-body .links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 2px solid var(--linen-3);
  border-radius: var(--radius-btn);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
}

.legal-body a.inline {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

  .legal-toc {
    position: static;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--linen-3);
  }

  .legal-toc ol {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Motion ---------- */

@media (prefers-reduced-motion: no-preference) {
  /* Only hidden once the script has taken charge; without JS everything simply shows. */
  .js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero .enter {
    opacity: 0;
    transform: translateY(24px);
    animation: enter 900ms var(--ease) forwards;
  }

  .hero .enter:nth-child(2) {
    animation-delay: 120ms;
  }

  .hero .enter:nth-child(3) {
    animation-delay: 240ms;
  }

  .hero-art.enter {
    animation-delay: 200ms;
    transform: translateY(24px) scale(0.98);
  }

  .hero-art .sticker {
    animation: drop 800ms var(--ease) 900ms backwards;
  }

  .board-art .motif {
    animation: floaty 7s ease-in-out infinite;
  }

  .board-art .motif-b {
    animation-delay: -3s;
  }

  @keyframes enter {
    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes drop {
    from {
      opacity: 0;
      transform: rotate(-24deg) scale(0.6);
    }
  }

  @keyframes floaty {
    0%,
    100% {
      translate: 0 0;
    }

    50% {
      translate: 0 -12px;
    }
  }
}
