@font-face {
  font-family: Nimbus;
  src: url("assets/sans.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --white: #f5f5f3;
  --muted: #aaa;
  --line: #242424;
  --motion: paused;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #000;
  color: var(--white);
  font:
    16px/1.5 Nimbus,
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.65;
}
:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: #fff;
  color: #000;
  padding: 12px;
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
.stage {
  position: relative;
  min-height: 810px;
  height: max(100svh, 75vw);
  max-height: 1440px;
  isolation: isolate;
}
.stage::before {
  content: "";
  position: absolute;
  inset: 0 5.2%;
  border-inline: 1px solid #101010;
  pointer-events: none;
  z-index: 1;
}
.header {
  position: relative;
  z-index: 3;
  min-height: 78px;
  padding: 12px 6.6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #101010;
}
.wordmark {
  font-size: 27px;
  letter-spacing: -0.06em;
  min-height: 44px;
  display: flex;
  align-items: center;
}
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav a {
  font-size: 13px;
  color: #c9c9c9;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav a:hover {
  color: white;
}
.button {
  border: 1px solid #555;
  min-height: 44px;
  padding: 8px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  line-height: 1.25;
  background: transparent;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.button span {
  font-family: Arial, sans-serif;
  font-size: 23px;
  line-height: 1;
  transition: transform 0.18s;
}
.button:hover {
  background: #191919;
  border-color: #bbb;
}
.button:hover span {
  transform: translateX(3px);
}
.primary {
  background: var(--white);
  color: #161616;
  border-color: var(--white);
}
.primary:hover {
  background: #d6d6d4;
  border-color: #d6d6d4;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: 5%;
  width: 90%;
  text-align: center;
}
h1 {
  font-size: clamp(48px, 5vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 400;
  margin: 0;
}
h1 span {
  color: #a3a3a3;
}
.hero-copy p {
  font-size: clamp(14px, 1.1vw, 20px);
  line-height: 1.4;
  color: var(--muted);
  margin: 24px auto 32px;
  max-width: 630px;
}
.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.garden {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.flowers {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: -2%;
  max-width: none;
}
.butterfly {
  position: absolute;
  top: 47%;
  left: 39.5%;
  width: 21%;
  aspect-ratio: 1;
  mix-blend-mode: screen;
  animation: hover-flight 5.1s ease-in-out infinite;
  animation-play-state: var(--motion);
}
.wings {
  position: absolute;
  inset: 0;
  perspective: 700px;
  transform: rotate(-17deg);
  transform-style: preserve-3d;
}
.wing {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  animation: wing-fold 1.3s ease-in-out infinite;
  animation-play-state: var(--motion);
  transform-style: preserve-3d;
}
.wing img {
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  max-width: none;
}
.left {
  left: 0;
  transform-origin: 100% 50%;
  --fold: 60deg;
}
.right {
  right: 0;
  transform-origin: 0 50%;
  --fold: -60deg;
  animation-delay: -0.04s;
}
.right img {
  right: 0;
}
.left img {
  left: 0;
}
@keyframes wing-fold {
  0%,
  100% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(var(--fold));
  }
}
@keyframes hover-flight {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }
  35% {
    transform: translate(3%, 4%) rotate(11deg);
  }
  70% {
    transform: translate(-2%, -2%) rotate(-7deg);
  }
}
.utility {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 6.6%;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  gap: 20px;
}
.utility a,
.utility button {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.utility button {
  border: 0;
  background: none;
  padding: 8px 0;
}
.art-error {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 8%;
  right: 8%;
  padding: 10px;
  background: #161616;
  text-align: center;
  font-size: 13px;
}
dialog {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100svh - 40px);
  padding: 48px 36px 32px;
  background: #111;
  color: var(--white);
  border: 1px solid #454545;
  overflow: auto;
}
dialog::backdrop {
  background: rgb(0 0 0 / 0.8);
}
:root:not(.enhanced) dialog:target:not([open]) {
  display: block;
  position: fixed;
  inset: 20px 0 auto;
  z-index: 6;
  box-shadow: 0 0 0 100vmax #000c;
}
dialog h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}
dialog h3 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 28px;
}
dialog p,
dialog li {
  color: #bbb;
  overflow-wrap: anywhere;
}
dialog p a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: white;
}
dialog li {
  margin: 12px 0;
}
.close {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 26px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
}
label {
  display: block;
  margin: 24px 0 8px;
}
textarea {
  width: 100%;
  resize: vertical;
  background: #070707;
  color: white;
  border: 1px solid #666;
  border-radius: 0;
  padding: 14px;
  margin-bottom: 16px;
  max-height: 40svh;
}
textarea::placeholder {
  color: #888;
}
#preview-text {
  white-space: pre-wrap;
  border-left: 1px solid #666;
  padding-left: 16px;
  max-height: 30svh;
  overflow: auto;
}
#note-preview .actions {
  justify-content: flex-start;
}
#note-status {
  font-size: 13px;
  min-height: 1.5em;
  margin-bottom: 0;
}
.gallery-art {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}
@media (min-width: 1920px) {
  .stage {
    max-width: 1920px;
    margin: auto;
  }
}
@media (max-width: 800px) {
  .stage {
    height: 100svh;
    min-height: 800px;
  }
  .header {
    padding: 12px 6%;
    gap: 12px;
    flex-wrap: wrap;
    min-height: 118px;
  }
  .wordmark {
    font-size: 25px;
  }
  .header-contact {
    margin-left: auto;
    padding-inline: 12px;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 4px;
  }
  nav a {
    font-size: 12px;
  }
  .hero-copy {
    top: 23%;
    left: 7%;
    width: 86%;
  }
  h1 {
    font-size: clamp(34px, 9.5vw, 64px);
    line-height: 1.08;
  }
  .hero-copy p {
    font-size: 14px;
    max-width: 340px;
    margin: 20px auto 24px;
  }
  .desktop-break {
    display: none;
  }
  .actions {
    gap: 10px;
  }
  .button {
    padding: 10px 14px;
    font-size: 12px;
    gap: 12px;
  }
  .butterfly {
    top: 53%;
    left: 25%;
    width: 50%;
  }
  .flowers {
    width: 175%;
    left: -37.5%;
    bottom: 0;
  }
  dialog {
    padding: 52px 22px 24px;
  }
  dialog h2 {
    font-size: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
