:root {
  --bg: #000000;
  --text: #e7e5ff;
  --muted: rgba(231, 229, 255, 0.72);
  --line: rgba(231, 229, 255, 0.14);
  --lime: #c1e54e;
  --lavender: #e7e5ff;
  --soft: #000000;
  --dark: #000000;
  --radius-button: 40px;
  --page: 1200px;
}

@font-face {
  font-family: Jost;
  src: url("https://fonts.shopifycdn.com/jost/jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Jost;
  src: url("https://fonts.shopifycdn.com/jost/jost_n6.ec1178db7a7515114a2d84e3dd680832b7af8b99.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Jost;
  src: url("https://fonts.shopifycdn.com/jost/jost_n7.921dc18c13fa0b0c94c5e2517ffe06139c3615a3.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Jost, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

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

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

.announcement {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 38px;
  padding: 6px 48px;
  border-bottom: 1px solid rgba(231, 229, 255, 0.12);
  color: var(--lavender);
  background: #000;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
  min-height: 75px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(231, 229, 255, 0.1);
  background: #000;
}

.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--lavender);
}

.logo {
  justify-self: start;
  min-width: 64px;
  color: var(--lime);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  justify-self: start;
  display: flex;
  gap: 31px;
  color: var(--lavender);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.slideshow {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:nth-child(2) img {
  object-fit: cover;
  object-position: center right;
  padding: 0;
  background: #000;
}

.slide-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.slide-shade.soft {
  background: rgba(0, 0, 0, 0.42);
}

.slide-copy {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 96px));
  margin: 0 0 132px 50px;
  padding: 0;
  color: var(--lavender);
}

.slide-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(45px, 5.2vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 700;
}

.slide-copy p {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--lavender);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.mobile-copy {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.button.primary {
  color: #050606;
  background: var(--lime);
}

.button.secondary {
  color: var(--lime);
  background: var(--lavender);
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 5;
  display: flex;
  min-width: 154px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transform: translateX(-50%);
  color: var(--text);
  font-size: 14px;
  line-height: 1;
}

.slide-arrow {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 24px;
  line-height: 34px;
  cursor: pointer;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.slide-arrow:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.slide-count {
  min-width: 36px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0;
}

.rich-text,
.closer,
.faq,
.privacy,
.reserve {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 64px);
  background: #000;
}

.narrow {
  max-width: 950px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

h2 {
  margin: 0 0 22px;
  color: var(--lavender);
  font-size: clamp(34px, 4.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
}

h3 {
  margin: 28px 0 14px;
  color: var(--lavender);
  font-size: clamp(23px, 3vw, 27px);
  line-height: 1.16;
  font-weight: 700;
  text-align: center;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.rich-text p {
  margin: 0 0 18px;
  text-align: center;
}

.reserve-form label {
  display: grid;
  gap: 8px;
  text-align: left;
}

.reserve-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(231, 229, 255, 0.65);
  border-radius: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--lavender);
  font: inherit;
}

.reserve-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.banner-card {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.banner-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-box {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 110px);
  padding: 0;
  color: var(--lavender);
  background: transparent;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.8);
}

.mode-head {
  padding-bottom: 48px;
}

.multirow {
  display: grid;
  gap: 0;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #000;
}

.row.reverse .media-card {
  order: 2;
}

.media-card {
  min-height: 420px;
  overflow: hidden;
  background: #ddd;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card video {
  display: block;
}

.row-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 88px);
}

.row-copy span {
  margin-bottom: 18px;
  color: #5c6f16;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 64px);
  background: #0c0d0d;
}

.video-label {
  width: min(1120px, 100%);
  margin: 0 auto 14px;
  color: #5c6f16;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-placeholder {
  position: relative;
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.09), transparent 24%),
    #030404;
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #030404;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.video-ready .play-mark {
  display: none;
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid rgba(255, 255, 255, 0.8);
}

.closer {
  background: #000;
}

.section-title {
  max-width: var(--page);
  margin: 0 auto 34px;
  text-align: center;
}

.section-title p {
  max-width: 680px;
  margin: 0 auto;
}

.feature-grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article {
  min-height: 420px;
  padding: 0;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}

.feature-grid article > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.feature-grid h3 {
  margin: 22px 22px 12px;
  font-size: 24px;
  text-align: left;
}

.feature-grid p {
  margin: 0 22px 24px;
  font-size: 16px;
}

.spec-band {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  align-items: center;
  gap: 0;
  background: #000;
}

.spec-band > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.spec-list {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 5vw, 72px);
}

.spec-list div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(231, 229, 255, 0.16);
}

.spec-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list strong {
  font-size: clamp(22px, 2.4vw, 32px);
}

.reserve {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  background: var(--dark);
  color: #fff;
}

.reserve p {
  color: rgba(255, 255, 255, 0.72);
}

.reserve-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(231, 229, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.07), rgba(231, 229, 255, 0.025)),
    #0e0f0f;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.reserve-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.reserve-points li {
  color: var(--lavender);
  font-size: 16px;
}

.reserve-points li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--lime);
}

.payment-panel {
  gap: 18px;
}

.payment-panel h3 {
  margin: 0;
  color: var(--lavender);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.05;
  text-align: left;
}

.payment-panel > p:first-of-type {
  margin: -4px 0 0;
  color: rgba(231, 229, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.payment-eyebrow {
  color: #6f871f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.payment-button {
  width: 100%;
  min-height: 58px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.payment-alert {
  padding: 15px 16px;
  border: 1px solid rgba(231, 229, 255, 0.16);
  background: rgba(231, 229, 255, 0.055);
  color: var(--lavender);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.spots-meter {
  display: grid;
  gap: 12px;
  padding: 18px 18px 17px;
  border: 1px solid rgba(193, 229, 78, 0.24);
  background: rgba(231, 229, 255, 0.055);
  color: #fff;
}

.spots-meter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.spots-meter-top span {
  color: var(--lime);
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
}

.spots-track {
  position: relative;
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(231, 229, 255, 0.18);
}

.spots-track span {
  display: block;
  position: static;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.fine-print {
  margin: 0;
  color: rgba(231, 229, 255, 0.68);
  font-size: 13.5px;
  line-height: 1.65;
}

.waitlist-link {
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reserve-form input {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.faq {
  max-width: var(--page);
  margin: 0 auto;
}

.faq h2,
.privacy h2 {
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: #000;
}

summary {
  padding: 22px 24px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 16px;
}

details a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy {
  max-width: var(--page);
  margin: 0 auto;
}

.privacy-copy {
  max-width: 860px;
  margin: 0 auto;
}

.privacy-copy p {
  margin: 0 0 16px;
}

.privacy-copy a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 64px);
  background: #080909;
  color: #fff;
}

@media (max-width: 980px) {
  .shop-header {
    grid-template-columns: 64px 1fr 64px;
    min-height: 66px;
  }

  .hamburger {
    display: block;
  }

  .nav {
    display: none;
  }

  .logo {
    justify-self: center;
  }

  .slideshow {
    min-height: 720px;
  }

  .slide:nth-child(2) img {
    object-position: center bottom;
    padding-top: 0;
  }

  .row,
  .spec-band,
  .reserve {
    grid-template-columns: 1fr;
  }

  .row.reverse .media-card {
    order: 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 620px) {
  .announcement {
    grid-template-columns: 1fr;
    font-size: 12px;
    min-height: 38px;
    padding: 6px 12px;
  }

  .slideshow {
    min-height: 0;
    padding-bottom: 48px;
  }

  .slide {
    position: relative;
    display: none;
    min-height: 0;
    opacity: 1;
    pointer-events: none;
  }

  .slide.active {
    display: block;
    pointer-events: auto;
  }

  .slide img,
  .slide:nth-child(2) img {
    position: relative;
    display: block;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    background: #000;
  }

  .slide-shade {
    display: none;
  }

  .slide-copy {
    width: auto;
    margin: 0;
    padding: 26px 18px 22px;
    text-align: center;
    background: #000;
  }

  .slide-copy h1 {
    font-size: 36px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .slide-copy p {
    max-width: 320px;
    margin-inline: auto;
    font-size: 15px;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .slide-copy .button {
    margin-inline: auto;
  }

  .banner-card {
    min-height: auto;
    display: block;
    overflow: visible;
  }

  .banner-card::after {
    display: none;
  }

  .banner-card > img {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    background: #000;
  }

  .banner-box {
    margin: 0;
    padding: 28px 18px 44px;
    width: auto;
    text-align: center;
    text-shadow: none;
    background: #000;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .spec-band > img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    background: #000;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
