:root {
  --ink: #10110e;
  --paper: #f0efe9;
  --olive: #667634;
  --accent: #b4ff00;
  --muted: #92938a;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.45'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  border: 1px solid rgba(216, 250, 79, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.ambient-one {
  top: -34vw;
  right: -16vw;
  width: 74vw;
  height: 74vw;
}

.ambient-two {
  right: 29vw;
  bottom: -17vw;
  width: 32vw;
  height: 32vw;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 4vw;
}

.wordmark {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.wordmark span {
  color: var(--accent);
}

.site-header p {
  margin: 0;
  color: #77786f;
  font-size: 0.61rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: calc(100vh - 68px);
  grid-template-columns: 46% 54%;
  align-items: center;
  padding: 125px 4vw 80px;
}

.copy {
  position: relative;
  z-index: 4;
  max-width: 750px;
}

.eyebrow {
  margin: 0 0 2.2rem;
  color: var(--accent);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 2.7rem;
  font-size: clamp(4rem, 6.8vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  color: var(--accent);
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.025em;
}

h1 .rf-space {
  display: inline;
  margin-left: 0.055em;
}

.intro {
  max-width: 440px;
  margin: 0;
  color: #aaa99f;
  font-size: 0.97rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.contact-link {
  display: inline-flex;
  gap: 1.1rem;
  align-items: center;
  padding: 0.95rem 1.25rem;
  border: 1px solid #67685f;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-link span {
  color: var(--accent);
  font-size: 0.95rem;
  transition: transform 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.contact-link:hover span {
  transform: translate(3px, -3px);
}

.actions p {
  margin: 0;
  color: #696a62;
  font-size: 0.61rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  max-width: 470px;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: #74756d;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(240, 239, 233, 0.18);
  border-radius: 18px;
  background: rgba(240, 239, 233, 0.055);
  color: var(--paper);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  padding: 0.95rem 1rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: rgba(180, 255, 0, 0.075);
}

.contact-form .message-field,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: start;
  padding: 0.95rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--paper);
  transform: translateY(-2px);
}

.hidden-field {
  display: none;
}

.art-stage {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  isolation: isolate;
}

.artwork-wrap {
  position: relative;
  z-index: 2;
  width: min(48vw, 760px);
  transform: translateY(1%);
  filter: drop-shadow(0 28px 70px rgba(186, 255, 62, 0.08));
  animation: drift 7s ease-in-out infinite;
  will-change: transform, translate;
}

.angler {
  display: block;
  width: 100%;
  height: auto;
}

.art-label,
.specimen-number {
  position: absolute;
  z-index: 4;
  color: #77786f;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.art-label {
  top: 5%;
  left: 4%;
}

.art-label i {
  color: var(--accent);
  font-style: normal;
}

.specimen-number {
  right: 3%;
  bottom: 5%;
  color: var(--accent);
}

footer {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-top: 1px solid rgba(240, 239, 233, 0.12);
  color: #6f7068;
  font-size: 0.57rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer strong {
  color: var(--accent);
  font-weight: 500;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color 180ms ease;
}

footer a:hover {
  color: var(--paper);
}

.thanks-page {
  min-height: 100vh;
}

.thanks-message {
  display: grid;
  min-height: 100vh;
  align-content: center;
  max-width: 820px;
  padding: 9vw 6vw;
}

.thanks-message .contact-link {
  justify-self: start;
  margin-top: 2.2rem;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(2%);
  }
  50% {
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .coming-soon {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .copy {
    max-width: 820px;
  }

  .art-stage {
    min-height: 620px;
  }

  .artwork-wrap {
    width: min(84vw, 720px);
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 22px 6vw;
  }

  .site-header p {
    font-size: 0.52rem;
  }

  .coming-soon {
    min-height: auto;
    padding: 125px 6vw 45px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.4rem);
  }

  .intro {
    max-width: 360px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .art-stage {
    min-height: 440px;
    margin-top: 3rem;
  }

  .artwork-wrap {
    width: 94vw;
  }

  .art-label {
    top: 3%;
    left: 0;
  }

  .specimen-number {
    right: 0;
    bottom: 3%;
  }

  footer {
    flex-wrap: wrap;
    gap: 0.85rem 2rem;
    padding: 1.4rem 6vw;
  }

  footer p:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
