:root {
  --night: #0f0321;
  --aubergine: #180018;
  --cream: #f5f3ef;
  --surface: #ffffff;
  --ink: #0f172b;
  --muted: #6f6b67;
  --yellow: #f6d900;
  --line: #dedad3;
  --warning: #e7000b;
  --radius-card: 16px;
  --radius-control: 10px;
  --shadow-paper: 0 1px 3px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(15, 3, 33, 0.05);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Hanken Grotesk", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.75rem, 7vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.section--white :focus-visible,
.perks-section :focus-visible,
.section :focus-visible {
  outline-color: var(--aubergine);
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.night-surface {
  color: #fff;
  background-color: var(--night);
  background-image:
    radial-gradient(circle at 55% 82%, rgba(123, 67, 255, 0.26), transparent 34%),
    radial-gradient(circle at 78% 100%, rgba(20, 235, 255, 0.1), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}

.nav {
  position: relative;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 142px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-menu > a:not(.button) {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.nav-menu > a:not(.button):hover {
  color: var(--yellow);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-control);
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 64px;
  align-items: end;
  padding-block: 64px 96px;
}

.hero__lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.17rem;
  line-height: 1.7;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.5);
}

.hero-summary {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  background: rgba(24, 0, 24, 0.78);
  box-shadow: var(--shadow-paper);
}

.hero-summary__value-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.hero-summary__value-row strong {
  font-size: 2.65rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-summary__value-row span,
.hero-summary > p:last-child {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.hero-summary > p:last-child {
  margin: 16px 0 0;
}

.progress {
  height: 6px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--yellow);
  transition: width 200ms ease;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.button--small {
  min-height: 42px;
  padding: 9px 18px;
}

.button--yellow {
  background: var(--yellow);
  color: #080808;
}

.button--yellow:hover {
  background: #fff;
}

.section--white .button--yellow:hover,
.perks-section .button--yellow:hover,
.claim-modal .button--yellow:hover {
  background: var(--night);
  color: #fff;
}

.button--dark {
  background: var(--night);
  color: #fff;
}

.button--dark:hover {
  background: #2b0c42;
}

.button--outline {
  border-color: var(--night);
  background: #fff;
  color: var(--night);
}

.button--outline:hover {
  background: var(--night);
  color: #fff;
}

.button--block {
  width: 100%;
}

.section {
  padding-block: 92px;
}

.section--white {
  background: #fff;
}

.section-lede {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading--split > p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: center;
}

.venue-address {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.venue-address > span {
  color: var(--muted);
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tag {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
}

.map-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--cream);
  box-shadow: var(--shadow-paper);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-paper);
  pointer-events: none;
}

.map-card__label span {
  color: var(--muted);
  font-size: 0.76rem;
}

.button--map {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 44px;
  padding: 10px 15px;
  box-shadow: var(--shadow-paper);
  font-size: 0.82rem;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.arrival-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-paper);
}

.icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--cream);
}

.icon-box svg,
.perk-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.arrival-card h3 {
  min-height: 31px;
  margin-bottom: 12px;
}

.arrival-card__description {
  flex: 1;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.arrival-card__footer {
  min-height: 64px;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.45;
}

.fine-print {
  margin: 20px 0 0;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.hotel-card {
  display: flex;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-paper);
}

.hotel-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hotel-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 20px;
}

.hotel-card__meta {
  min-height: 17px;
  margin-bottom: 14px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hotel-card__title {
  min-height: 51px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.hotel-card__description {
  min-height: 52px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.hotel-card__terms {
  min-height: 48px;
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 620;
  line-height: 1.4;
}

.hotel-card .button {
  width: 100%;
  margin-top: auto;
}

.perks-section {
  padding-top: 92px;
  background: var(--cream);
}

.perks-heading {
  margin-bottom: 38px;
}

.perks-toolbar {
  position: sticky;
  z-index: 20;
  top: 0;
  border-block: 1px solid var(--line);
  background: rgba(245, 243, 239, 0.96);
  backdrop-filter: blur(12px);
}

.perks-toolbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 12px;
}

.filters {
  display: flex;
  min-width: 0;
  flex: 1;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.filter-button,
.claims-button {
  min-height: 44px;
  flex: none;
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.83rem;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  font-weight: 750;
}

.claims-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: var(--night);
  border-radius: var(--radius-control);
  background: var(--night);
  color: #fff;
  font-weight: 750;
}

.claims-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--night);
  font-size: 0.72rem;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  padding-block: 44px 92px;
}

.perk-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-paper);
  transition: border-color 160ms ease, transform 160ms ease;
}

.perk-card:hover {
  border-color: var(--night);
  transform: translateY(-2px);
}

.perk-card__top {
  display: flex;
  min-height: 31px;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.value-badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.73rem;
  font-weight: 750;
}

.value-badge.is-claimed {
  background: var(--cream);
}

.perk-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-top: 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--cream);
}

.perk-card h3 {
  min-height: 32px;
  margin-top: 18px;
}

.perk-card__description {
  min-height: 68px;
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.perk-details {
  display: grid;
  min-height: 122px;
  gap: 8px;
  margin: 0 0 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.perk-details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.perk-details dt {
  color: var(--muted);
}

.perk-details dd {
  margin: 0;
  text-align: right;
  font-weight: 650;
}

.perk-card .button {
  width: 100%;
  margin-top: auto;
}

.closing {
  padding-block: 72px;
}

.closing__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.closing h2 {
  color: #fff;
}

.footer {
  padding-block: 56px 30px;
  background: var(--aubergine);
  color: #fff;
}

.footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__logo {
  margin-top: 4px;
}

.newsletter {
  width: min(100%, 460px);
}

.newsletter label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.newsletter__controls {
  display: flex;
  gap: 8px;
}

.newsletter input {
  min-width: 0;
  min-height: 48px;
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-control);
  background: var(--night);
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.footer__bottom div {
  display: flex;
  gap: 24px;
}

.overlay,
.drawer-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(15, 3, 33, 0.78);
}

.overlay {
  display: grid;
  padding: 24px;
  place-items: center;
}

[hidden] {
  display: none !important;
}

.claim-modal {
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 28px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.dialog-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.dialog-heading h2 {
  font-family: inherit;
  font-size: 1.65rem;
  letter-spacing: -0.025em;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.claim-value-card {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-control);
  background: var(--cream);
}

.claim-value-card > span,
.drawer-summary > span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.claim-value-card strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.claim-value-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  margin-block: 24px;
  cursor: pointer;
  font-size: 0.87rem;
  line-height: 1.55;
}

.checkbox-row input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--night);
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.claim-success {
  margin-top: 26px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 1.4rem;
  font-weight: 800;
}

.claim-success h3 {
  margin-bottom: 5px;
}

.claim-success > p {
  color: var(--muted);
  font-size: 0.86rem;
}

.code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--cream);
}

.code-row code {
  padding-left: 8px;
  font-weight: 700;
}

.drawer-overlay {
  display: flex;
  justify-content: end;
}

.claims-drawer {
  display: flex;
  width: min(100%, 440px);
  height: 100%;
  flex-direction: column;
  padding: 28px;
  background: var(--cream);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.2);
}

.drawer-summary {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--night);
  color: #fff;
}

.drawer-summary > span {
  color: rgba(255, 255, 255, 0.55);
}

.drawer-summary strong {
  font-size: 2rem;
}

.claims-list {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 10px;
  margin-block: 20px;
  overflow-y: auto;
}

.wallet-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
}

.wallet-card__top,
.wallet-card__actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.wallet-card__top span {
  font-size: 0.8rem;
  font-weight: 700;
}

.wallet-card code {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.wallet-card__actions {
  margin-top: 14px;
}

.wallet-card__actions .button {
  min-height: 42px;
  flex: 1;
}

.wallet-remove {
  width: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
  cursor: pointer;
}

.empty-wallet {
  padding: 34px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  text-align: center;
}

.empty-wallet p {
  margin-bottom: 5px;
  font-weight: 700;
}

.empty-wallet span {
  color: var(--muted);
  font-size: 0.84rem;
}

.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: 1080px) {
  .arrival-grid,
  .hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .venue-layout {
    gap: 44px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .nav {
    min-height: 82px;
  }

  .menu-button {
    display: block;
  }

  .nav-menu {
    position: absolute;
    z-index: 50;
    top: 72px;
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 36px));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-card);
    background: var(--night);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu > a:not(.button) {
    padding: 13px 12px;
  }

  .nav-menu .button {
    margin-top: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 50px 72px;
  }

  .venue-layout {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 360px;
  }

  .section-heading--split,
  .closing__inner,
  .footer__top,
  .footer__bottom {
    align-items: start;
    flex-direction: column;
  }

  .section-heading--split {
    gap: 24px;
  }

  .section-heading--split > p {
    max-width: 620px;
  }

  .claims-button__label {
    display: none;
  }
}

@media (max-width: 620px) {
  .section {
    padding-block: 68px;
  }

  .arrival-grid,
  .hotel-grid,
  .perks-grid {
    grid-template-columns: 1fr;
  }

  .arrival-card {
    min-height: 320px;
  }

  .hotel-card__title,
  .hotel-card__description,
  .hotel-card__terms,
  .perk-card h3,
  .perk-card__description,
  .perk-details {
    min-height: 0;
  }

  .map-card {
    min-height: 430px;
  }

  .map-card__label {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .button--map {
    top: 16px;
    right: 16px;
  }

  .perks-section {
    padding-top: 68px;
  }

  .perks-grid {
    padding-block: 32px 68px;
  }

  .perk-card {
    min-height: 420px;
  }

  .newsletter__controls,
  .dialog-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .newsletter__controls {
    display: flex;
  }

  .overlay {
    align-items: end;
    padding: 0;
  }

  .claim-modal {
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
