:root {
  --ink: #22201d;
  --muted: #716a61;
  --cream: #fff8ed;
  --paper: #fffdfa;
  --mint: #d9efdc;
  --sage: #8faa83;
  --moss: #365f43;
  --coral: #f65f6d;
  --cherry: #df4154;
  --butter: #ffd86f;
  --line: rgba(34, 32, 29, 0.16);
  --shadow: 0 24px 80px rgba(96, 65, 42, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(246, 95, 109, 0.28), transparent 28rem),
    linear-gradient(135deg, #fff8ed 0%, #fffdfa 38%, #edf5e8 100%);
  font-family: "Manrope", sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 250, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
}

[data-animate="drop"] {
  animation: drop-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 380ms both;
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  background: var(--cherry);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--mint);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 6px 6px 0 var(--sage);
}

nav a {
  font-size: 0.9rem;
  color: rgba(34, 32, 29, 0.72);
}

.hero {
  position: relative;
  min-height: clamp(620px, 76svh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 96px clamp(20px, 6vw, 84px) 36px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-drift 18s ease-in-out infinite alternate;
  transform: scale(1.03);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.97) 0%, rgba(241, 249, 232, 0.76) 39%, rgba(241, 249, 232, 0.08) 72%),
    linear-gradient(0deg, rgba(34, 32, 29, 0.18), transparent 48%);
}

.hero-copy {
  position: relative;
  max-width: 680px;
  padding-top: clamp(36px, 8vh, 86px);
}

.hero-copy > * {
  animation: rise-in 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy > :nth-child(1) {
  animation-delay: 520ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 640ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 760ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 880ms;
}

.hero-copy > :nth-child(5) {
  animation-delay: 1000ms;
}

.hero-copy > :nth-child(6) {
  animation-delay: 1120ms;
}

.eyebrow {
  margin: 0 0 14px;
  width: fit-content;
  color: var(--ink);
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 0.94;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(5.8rem, 15vw, 12rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
}

.split h2,
.club h2 {
  max-width: 12em;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(34, 32, 29, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.48;
}

.catchphrase {
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--cherry);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--sage);
  font-family: "Fraunces", serif;
  font-size: clamp(1.25rem, 3vw, 2.15rem);
  line-height: 1;
  animation-name: rise-in, soft-pulse;
  animation-duration: 760ms, 3200ms;
  animation-delay: 760ms, 1900ms;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1), ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: both, none;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  width: min(100%, 560px);
}

input,
select,
button {
  min-height: 58px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
}

input,
select,
.city-combobox {
  flex: 1;
  min-width: 0;
}

input,
select {
  padding: 0 22px;
  color: var(--ink);
  background: rgba(255, 253, 250, 0.92);
  box-shadow: inset 0 -4px 0 rgba(246, 95, 109, 0.32);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

select {
  width: 100%;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 26px,
    calc(100% - 17px) 26px;
  background-size: 7px 7px;
  background-repeat: no-repeat;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--cherry);
  box-shadow: inset 0 -4px 0 rgba(246, 95, 109, 0.46), 0 0 0 5px rgba(217, 239, 220, 0.9);
  transform: translateY(-1px);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: rgba(255, 253, 250, 0.78);
  box-shadow: inset 0 -4px 0 rgba(246, 95, 109, 0.24);
}

.checkbox-group-title {
  width: 100%;
  margin: 0 0 2px;
  padding: 0;
  color: rgba(34, 32, 29, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.checkbox-group label {
  display: inline-flex;
}

.checkbox-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-group span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 2px solid rgba(34, 32, 29, 0.4);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.checkbox-group input:focus-visible + span {
  border-color: var(--cherry);
  box-shadow: 0 0 0 5px rgba(217, 239, 220, 0.9);
}

.checkbox-group input:checked + span {
  border-color: var(--ink);
  background: var(--mint);
  transform: translateY(-1px);
}

.city-combobox {
  position: relative;
}

.city-combobox input {
  width: 100%;
}

.city-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 240px;
  margin: 0;
  padding: 8px;
  overflow-y: auto;
  list-style: none;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}

.city-suggestions li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 800;
}

.city-suggestions li:hover,
.city-suggestions li.is-active {
  background: var(--mint);
}

button,
.button-link {
  cursor: pointer;
  padding: 0 24px;
  color: var(--paper);
  background: var(--cherry);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

button:hover,
.button-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

button:active,
.button-link:active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--ink);
}

.button-link {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(34, 32, 29, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.intro {
  padding: clamp(28px, 4.6vw, 68px) clamp(20px, 6vw, 84px);
  background: var(--coral);
  color: var(--paper);
  border-block: 2px solid var(--ink);
}

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--mint);
  border-bottom: 2px solid var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 14px 0;
  animation: ticker-move 42s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  white-space: nowrap;
}

.ticker span::after {
  width: 10px;
  height: 10px;
  content: "";
  background: var(--cherry);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.intro p {
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 4.2vw, 5.4rem);
  line-height: 1;
  text-wrap: balance;
}

.section {
  padding: clamp(64px, 9vw, 126px) clamp(20px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.perk {
  padding: 26px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.club {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  background: var(--paper);
  border-block: 2px solid var(--ink);
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-self: start;
}

.club-item {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 7px 7px 0 var(--sage);
}

.club-item:nth-child(2) {
  background: var(--coral);
  color: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
}

.club-item:nth-child(3) {
  background: var(--butter);
}

.club-item span {
  font-weight: 800;
}

.club-item p {
  margin-bottom: 0;
  line-height: 1.6;
}

.perk:hover {
  transform: translateY(-5px) rotate(-0.6deg);
  box-shadow: 0 32px 90px rgba(96, 65, 42, 0.26);
}

.perk span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cherry);
  font-weight: 800;
}

.perk p,
.club-item p,
.waitlist p,
footer p {
  color: var(--muted);
  line-height: 1.7;
}

.club-item:nth-child(2) p {
  color: rgba(255, 253, 250, 0.86);
}

.ethos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 95, 109, 0.2), rgba(217, 239, 220, 0.82)),
    var(--paper);
  border-block: 2px solid var(--ink);
}

.quote-block h2 {
  max-width: 850px;
}

.mini-card-stack {
  display: grid;
  gap: 14px;
  transform: rotate(2deg);
}

.mini-card {
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 7px 7px 0 var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1;
  animation: sticker-float 5s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.mini-card:hover {
  box-shadow: 10px 10px 0 var(--ink);
}

.mini-card:nth-child(2) {
  transform: translateX(-18px) rotate(-4deg);
  animation-delay: 450ms;
}

.mini-card:nth-child(3) {
  transform: translateX(10px) rotate(3deg);
  animation-delay: 900ms;
}

.mint {
  background: var(--mint);
}

.coral {
  background: var(--coral);
  color: var(--paper);
}

.butter {
  background: var(--butter);
}

.sage {
  background: var(--sage);
  color: var(--paper);
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.final-form {
  flex-direction: column;
  width: 100%;
}

.final-form button {
  width: fit-content;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.perk-grid [data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.perk-grid [data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

.waitlist-form.is-submitted {
  animation: submit-pop 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(1.6%, -1.4%, 0);
  }
}

@keyframes soft-pulse {
  50% {
    transform: translateY(-2px) rotate(-0.4deg);
    box-shadow: 7px 7px 0 var(--sage);
  }
}

@keyframes sticker-float {
  50% {
    translate: 0 -8px;
  }
}

@keyframes submit-pop {
  50% {
    transform: scale(1.025) rotate(-0.5deg);
  }
}

@keyframes ticker-move {
  to {
    transform: translateX(-50%);
  }
}

footer {
  padding: 26px clamp(20px, 6vw, 84px) 38px;
}

footer p {
  margin: 0;
  font-size: 0.88rem;
}

.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;
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 96px;
    align-items: end;
  }

  .hero-copy {
    padding-top: 0;
    padding-bottom: 2vh;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(255, 248, 237, 0.97) 0%, rgba(241, 249, 232, 0.88) 48%, rgba(241, 249, 232, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 248, 237, 0.5), transparent);
  }

  .waitlist-form,
  .split,
  .perk-grid,
  .club,
  .club-grid,
  .ethos,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    flex-direction: column;
  }

  button,
  .button-link,
  .final-form button {
    width: 100%;
  }

  h1 {
    font-size: clamp(5.2rem, 26vw, 8rem);
  }

  .split h2,
  .club h2 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 5rem);
  }

  .mini-card-stack {
    transform: none;
  }

}

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

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