: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;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(231, 229, 255, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.06), rgba(231, 229, 255, 0.02)),
    rgba(8, 11, 13, 0.78);
  color: var(--lavender);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  background: rgba(193, 229, 78, 0.12);
  color: var(--lime);
  outline: 0;
}

.nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(193, 229, 78, 0.2);
}

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

.team-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(180deg, #000 0%, #080909 48%, #000 100%);
}

.team-story {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  width: min(var(--page), 100%);
  margin: 0 auto 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: rgba(231, 229, 255, 0.045);
  text-align: center;
}

.team-story-head {
  display: grid;
  justify-items: center;
}

.team-story span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-story span {
  color: #c1e54e;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.15;
  text-shadow: 0 0 18px rgba(193, 229, 78, 0.24);
}

.team-story p {
  margin: 0;
  color: rgba(231, 229, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
}

.team-story-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(840px, 100%);
}

.team-story-summary {
  display: -webkit-box;
  max-width: 820px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.team-story-summary[hidden] {
  display: none;
}

.team-story-full {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 860px;
  padding-top: 4px;
  text-align: left;
}

.team-story-full[hidden] {
  display: none;
}

.team-story-toggle {
  min-width: 178px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(193, 229, 78, 0.48);
  border-radius: 999px;
  background: transparent;
  color: var(--lime);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.team-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-profile-avatar span {
  color: rgba(231, 229, 255, 0.42);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.team-profile-wrap {
  display: grid;
  gap: 24px;
  width: min(var(--page), 100%);
  margin: 28px auto 0;
}

.team-profile-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.66fr) minmax(410px, 1.08fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: clamp(22px, 3.2vw, 36px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: #151a1f;
}

.team-profile-panel--no-gallery {
  grid-template-columns: minmax(190px, 0.72fr) minmax(360px, 1.08fr);
}

.team-profile-panel[hidden] {
  display: none;
}

.team-profile-bio {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  min-height: 100%;
  padding: clamp(18px, 2.4vw, 26px);
  background: transparent;
  text-align: center;
}

.team-profile-avatar {
  display: grid;
  width: min(190px, 100%);
  margin: 4px auto 8px;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 38%, rgba(193, 229, 78, 0.22), transparent 34%),
    #090a0a;
}

.team-profile-name {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.team-profile-intro {
  margin: 0;
  color: rgba(231, 229, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

.team-profile-intro {
  max-width: 250px;
}

.team-profile-link {
  display: inline-flex;
  margin-top: 2px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-profile-link:hover {
  color: #d9ff65;
}

.team-profile-main {
  display: grid;
  align-self: stretch;
  align-content: stretch;
  scroll-margin-top: 96px;
}

.team-profile-facts {
  display: grid;
  height: 100%;
  margin: 0;
  border: 1px solid rgba(231, 229, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.045), rgba(231, 229, 255, 0.015)),
    rgba(0, 0, 0, 0.16);
}

.team-profile-facts div {
  display: grid;
  grid-template-columns: minmax(132px, 0.44fr) 1fr;
  align-items: center;
  gap: 16px;
  padding: clamp(13px, 1.8vw, 18px) 18px;
  border-top: 1px solid rgba(231, 229, 255, 0.1);
}

.team-profile-facts div:first-child {
  border-top: 0;
}

.team-profile-facts dt,
.team-profile-facts dd {
  margin: 0;
}

.team-profile-facts dt {
  color: #8ea92a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.team-profile-facts dd {
  color: rgba(231, 229, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.team-profile-gallery {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.team-profile-gallery div {
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(231, 229, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(231, 229, 255, 0.07), rgba(231, 229, 255, 0.015)),
    #090a0a;
  color: rgba(231, 229, 255, 0.46);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-profile-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
  cursor: zoom-in;
}

.team-profile-gallery div:first-child img {
  object-position: center 38%;
}

.team-profile-gallery div:nth-child(2) img {
  object-position: center 45%;
}

.team-profile-gallery[aria-label="William Liu profile images"] div:first-child img,
.member-media-grid[aria-label="William Liu profile images"] img:first-child {
  object-position: center 48%;
}

.member-page {
  background: #000;
}

.member-hero {
  --member-hero-image-height: clamp(480px, 46vw, 660px);
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 0;
  background: #0b0d0e;
}

.member-hero-bg {
  position: relative;
  inset: auto;
  width: 100%;
  height: var(--member-hero-image-height);
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
  opacity: 1;
  filter: brightness(0.92) contrast(1.04);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 74%,
    rgba(0, 0, 0, 0.86) 84%,
    rgba(0, 0, 0, 0.36) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 74%,
    rgba(0, 0, 0, 0.86) 84%,
    rgba(0, 0, 0, 0.36) 94%,
    transparent 100%
  );
  z-index: 0;
}

.member-hero--william .member-hero-bg {
  object-position: center 43%;
  filter: brightness(0.98) contrast(1.03);
}

.member-hero--leo {
  --member-hero-image-height: clamp(560px, 50vw, 720px);
}

.member-hero-bg.member-hero-bg--leo {
  object-position: center 88%;
}

.member-hero--chester {
  --member-hero-image-height: clamp(620px, 48vw, 720px);
  background:
    radial-gradient(circle at 72% 28%, rgba(193, 229, 78, 0.08), transparent 34%),
    linear-gradient(90deg, #050606 0%, #111719 48%, #050606 100%);
}

.member-hero--chester .member-hero-bg {
  height: var(--member-hero-image-height);
  object-fit: cover;
  object-position: 52% center;
  background: #0b0d0e;
  filter: brightness(0.96) contrast(1.04);
}

.member-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--member-hero-image-height) - 410px);
  z-index: 1;
  display: block;
  height: 520px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(11, 13, 14, 0) 0%,
    rgba(11, 13, 14, 0.06) 16%,
    rgba(11, 13, 14, 0.2) 34%,
    rgba(11, 13, 14, 0.5) 58%,
    rgba(11, 13, 14, 0.86) 82%,
    #0b0d0e 100%
  );
  transform: translateY(8px);
}

.member-hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--page), calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) 0 clamp(18px, 3vw, 36px);
}

.member-breadcrumb {
  margin: 0 0 20px;
  color: rgba(231, 229, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.member-breadcrumb a {
  color: var(--lime);
}

.member-hero h1 {
  max-width: 700px;
  margin: 0 0 14px;
  color: var(--lavender);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  text-align: left;
}

.member-hero-role {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-hero-summary {
  max-width: 640px;
  margin: 0;
  color: rgba(231, 229, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.member-detail {
  padding: clamp(4px, 1.2vw, 16px) clamp(18px, 5vw, 64px) clamp(54px, 8vw, 104px);
  background: #0b0d0e;
}

.member-profile-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(24px, 3vw, 36px);
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: #151a1f;
}

.member-back-link {
  display: inline-flex;
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: -6px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-profile-main {
  display: grid;
  align-content: start;
  gap: clamp(24px, 3vw, 34px);
}

.member-facts {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(231, 229, 255, 0.18);
}

.member-facts div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: clamp(18px, 3vw, 34px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(231, 229, 255, 0.14);
}

.member-facts dt,
.member-facts dd {
  margin: 0;
  color: rgba(231, 229, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.member-facts dt {
  color: var(--lavender);
  font-weight: 700;
}

.member-story {
  display: grid;
  gap: 16px;
  max-width: none;
}

.member-story p {
  margin: 0;
  color: rgba(231, 229, 255, 0.72);
  font-size: 16px;
  line-height: 1.78;
}

.member-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-content: start;
  gap: 14px;
}

.member-media-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: #090a0a;
}

.member-profile-card--no-gallery {
  grid-template-columns: 1fr;
  max-width: 1040px;
}

body.is-lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
}

.image-lightbox img {
  display: block;
  width: auto;
  max-width: min(92vw, 1180px);
  max-height: 84vh;
  object-fit: contain;
  border: 1px solid rgba(231, 229, 255, 0.22);
  background: #050606;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

.image-lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  display: grid;
  width: 44px;
  aspect-ratio: 1 / 1;
  place-items: center;
  border: 1px solid rgba(231, 229, 255, 0.34);
  border-radius: 50%;
  color: var(--lavender);
  background: rgba(12, 13, 13, 0.78);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  border-color: rgba(193, 229, 78, 0.72);
  color: var(--lime);
  outline: 0;
}

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

.verify-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 18%, rgba(193, 229, 78, 0.13), transparent 32%),
    linear-gradient(180deg, #050606 0%, #000 100%);
}

.verify-header {
  position: relative;
  grid-template-columns: auto 1fr;
}

.verify-shell {
  display: grid;
  min-height: calc(100vh - 75px);
  place-items: center;
  padding: clamp(36px, 8vw, 86px) 18px;
}

.verify-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  width: min(1040px, 100%);
  overflow: hidden;
  border: 1px solid rgba(231, 229, 255, 0.14);
  background:
    linear-gradient(130deg, rgba(231, 229, 255, 0.08), rgba(231, 229, 255, 0.02)),
    #080909;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
}

.verify-copy,
.verify-box {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(30px, 5vw, 58px);
}

.verify-copy h1 {
  max-width: 560px;
  margin: 0;
  color: var(--lavender);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
}

.verify-copy p {
  max-width: 540px;
  margin: 0;
  color: rgba(231, 229, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.verify-box {
  border-left: 1px solid rgba(231, 229, 255, 0.12);
  background: rgba(0, 0, 0, 0.34);
}

.verify-choice {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: rgba(231, 229, 255, 0.055);
}

.verify-choice span {
  color: rgba(231, 229, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verify-choice strong {
  color: var(--lavender);
  font-size: 30px;
  line-height: 1;
}

.turnstile-widget {
  display: grid;
  min-height: 74px;
  align-items: center;
}

.verify-status {
  margin: 0;
  color: rgba(231, 229, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.verified-actions {
  display: grid;
  gap: 12px;
}

.verified-checkout[hidden] {
  display: none;
}

.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: 48px minmax(0, 1fr) 48px;
    grid-template-rows: 58px auto;
    gap: 0;
    min-height: 108px;
    padding: 0 clamp(16px, 4vw, 26px) 10px;
  }

  .hamburger {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 42px;
    overflow-x: auto;
    padding: 5px;
    border: 1px solid rgba(231, 229, 255, 0.16);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(231, 229, 255, 0.07), rgba(231, 229, 255, 0.025)),
      rgba(13, 18, 22, 0.88);
    color: rgba(231, 229, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 clamp(10px, 2.6vw, 14px);
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .slideshow {
    min-height: 720px;
  }

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

  .row,
  .spec-band,
  .reserve,
  .verify-card,
  .team-story,
  .team-profile-panel,
  .member-profile-card,
  .member-profile-card--no-gallery {
    grid-template-columns: 1fr;
  }

  .member-media-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .verify-box {
    border-left: 0;
    border-top: 1px solid rgba(231, 229, 255, 0.12);
  }

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

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

  .team-profile-avatar {
    width: 176px;
  }

  .team-profile-bio {
    width: min(100%, 360px);
    justify-self: center;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .member-hero {
    --member-hero-mobile-image-height: min(62vh, 520px);
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 0;
    background: #0b0d0e;
  }

  .member-hero--leo {
    --member-hero-mobile-image-height: min(64vh, 540px);
  }

  .member-hero--chester {
    --member-hero-mobile-image-height: min(58vh, 500px);
  }

  .member-hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: var(--member-hero-mobile-image-height);
    object-fit: cover;
    object-position: center 38%;
    opacity: 1;
    filter: brightness(0.92) contrast(1.04);
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 74%,
      rgba(0, 0, 0, 0.86) 84%,
      rgba(0, 0, 0, 0.36) 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 74%,
      rgba(0, 0, 0, 0.86) 84%,
      rgba(0, 0, 0, 0.36) 94%,
      transparent 100%
    );
    z-index: 0;
  }

  .member-hero--william .member-hero-bg {
    object-position: 54% 42%;
    filter: brightness(0.96) contrast(1.03);
  }

  .member-hero--chester .member-hero-bg {
    height: var(--member-hero-mobile-image-height);
    object-position: 55% center;
  }

  .member-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--member-hero-mobile-image-height) - 340px);
    z-index: 1;
    display: block;
    height: 430px;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(11, 13, 14, 0) 0%,
      rgba(11, 13, 14, 0.06) 16%,
      rgba(11, 13, 14, 0.2) 34%,
      rgba(11, 13, 14, 0.5) 58%,
      rgba(11, 13, 14, 0.86) 82%,
      #0b0d0e 100%
    );
    transform: translateY(8px);
  }

  .member-hero-copy {
    position: relative;
    z-index: 2;
    width: min(100% - 36px, 620px);
    padding: 24px 0 28px;
  }

  .member-hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .member-hero-summary {
    font-size: 16px;
  }

  .member-detail {
    padding: 10px 18px 36px;
  }

  .member-profile-card,
  .member-profile-card--no-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px 18px;
  }

  .member-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .member-media-grid {
    grid-template-columns: 1fr;
  }

  .team-profile-gallery--mobile-fill {
    justify-items: stretch;
  }

  .team-profile-gallery--mobile-fill div {
    width: 100%;
    aspect-ratio: auto;
  }

  .team-profile-gallery--mobile-fill img {
    height: auto;
    object-fit: contain;
    background: transparent;
  }
}

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

  .team-section {
    padding-inline: 18px;
  }

  .team-story,
  .team-profile-panel {
    border-radius: 0;
  }

  .team-story {
    padding: 22px 18px;
  }

  .team-story p {
    font-size: 15px;
  }

  .team-profile-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

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

  .verify-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .verify-header .nav {
    display: none;
  }

  .verify-shell {
    min-height: calc(100vh - 66px);
    padding: 18px;
  }

  .verify-copy,
  .verify-box {
    padding: 26px 18px;
  }

  .verify-copy h1 {
    font-size: 36px;
  }
}
