/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: "Replica Mono LL";
  src: url("/assets/ReplicaMonoLLWeb-Regular-f3aa841a.woff2") format("woff2"), url("/assets/ReplicaMonoLLWeb-Regular-e5e9609e.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: "Replica Mono LL", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  line-height: 1.5;
  font-family: var(--font-family);
  background: #fff;
  color: #111;
  color-scheme: light;
}

header,
main,
section,
fieldset {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

body > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

body > header p {
  margin: 0;
}

body > header nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-header-brand {
  display: inline-block;
}

.site-header-brand-image {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: min(20rem, 70vw);
}

h1 {
  font-size: 2rem;
}

label {
  display: block;
}

input:not([type=submit]):not([type=button]),
select,
textarea {
  font: inherit;
  max-width: 100%;
}

:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.notice,
.alert {
  max-width: 48rem;
  margin: 1rem auto;
  padding: 0.75rem 1rem;
}

body > footer {
  max-width: 48rem;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

body > footer nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

body > footer a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button,
button,
input[type=submit],
input[type=button] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.65rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
}

.button:visited {
  color: #fff;
}

.button:disabled,
button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--outline {
  background: transparent;
  color: #000;
  box-shadow: inset 0 0 0 2px currentColor;
}

.button--outline:visited {
  color: #000;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: #000;
  color: #fff;
}

.button--register-now {
  letter-spacing: 1em;
}

.time-travel {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.time-travel__label {
  opacity: 0.6;
}

.time-travel__reset {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.time-travel__reset:visited {
  color: inherit;
}

.home-page {
  background: #fff;
  color: #111;
  color-scheme: light;
}
@media (min-width: 768px) {
  .home-page {
    overflow: hidden;
  }
}
.home-page .notice,
.home-page .alert {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  margin: 0;
}
.home-page main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.home {
  display: grid;
  grid-template-columns: 65% 35%;
  min-height: 100svh;
  max-width: none;
  margin: 0;
  padding: 0;
}

.home__intro {
  display: grid;
  place-items: center;
  padding: 3rem;
  background-color: #fff;
  background-image: url("/assets/bg_word_ring-2494bafd.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

.home__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
  max-width: 30rem;
  text-align: center;
}

.home__brand {
  margin: 0;
  font-size: inherit;
}

.home__logo {
  width: min(18.5rem, 70%);
  height: auto;
}

.home__registration-status {
  margin: 0;
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 100;
}

.home__registration-tz {
  font-size: 0.7em;
}

.home__countdown {
  margin: 0;
}

.home__countdown time {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.1rem;
}

.home__countdown-part {
  white-space: nowrap;
}

.home__media {
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.home__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 799px) and (max-width: 1200px) {
  .home {
    grid-template-columns: 60% 40%;
  }
  .home__intro {
    background: none;
  }
}
@media (max-width: 799px) {
  .home {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .home__intro {
    background-size: 80%;
  }
  .home__media {
    position: relative;
    order: -1;
    height: 400px;
    background-image: url("/assets/nhh_home_hero_horizontal-bd1b879e.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .home__photo {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .home__logo {
    width: min(15rem, 60%);
  }
  .home__registration-status {
    font-size: 1rem;
  }
  .home__countdown, .button--register-now {
    font-size: 1rem;
  }
}
@media (max-width: 540px) {
  .home .button--register-now {
    letter-spacing: 0.42em;
    white-space: nowrap;
  }
}
@media (max-width: 440px) {
  .home__intro {
    padding: 1rem;
    background-image: none;
  }
}
.sign-in h2 {
  margin-bottom: 2rem;
}

.sign-in p {
  margin: 0 0 2rem;
}

.sign-in form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sign-in label {
  margin-bottom: 0.5rem;
}

.registration-page main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.registration-thank-you-page main {
  display: grid;
  place-items: center;
  max-width: none;
  min-height: 100svh;
  margin: 0;
  padding: 2rem;
}

.registration-thank-you {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.registration-thank-you__heading {
  margin: 0;
}

.registration-thank-you__image {
  display: block;
  width: 100%;
  height: auto;
}

.registration-thank-you__subhead {
  margin: 1.25rem 0 0;
  padding-left: 1.5rem;
  font-size: 1.625rem;
  letter-spacing: 1.5rem;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .registration-thank-you__subhead {
    padding-left: 0.45rem;
    font-size: 1.25rem;
    letter-spacing: 0.45rem;
  }
}
@media (max-width: 440px) {
  .registration-thank-you__subhead {
    padding-left: 0.2rem;
    font-size: 1rem;
    letter-spacing: 0.2rem;
  }
}
.registration {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding: 0;
}

.registration__banner {
  max-width: none;
  margin: 0;
  padding: 0;
}

.registration__banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.registration__body {
  padding: 3rem 0 4rem;
}

@media (max-width: 1199px) {
  .registration {
    padding: 0 1rem 1rem;
  }
  .registration__body {
    padding: 0;
  }
}
.registration__body p {
  font-size: 1.25rem;
  text-transform: uppercase;
  text-wrap: balance;
}

.registration-form p {
  margin: 0;
  font-size: inherit;
  text-transform: none;
}

@media (min-width: 64em) {
  .registration__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
  }
}
.registration-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.registration-form__website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.registration-form__error {
  margin: 0;
  color: #e10600;
  font-size: 0.95rem;
  line-height: 1.4;
}

.registration-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.registration-form__field {
  position: relative;
  margin: 0;
}

.registration-form__field label:not(.message) {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  margin: 0;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.35);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  transition: top 0.15s ease, transform 0.15s ease, font-size 0.15s ease;
}

.registration-form__field input,
.registration-form__field select {
  display: block;
  width: 100%;
  padding: 1.5rem 0 0.5rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
}

.registration-form__field select {
  appearance: none;
  padding: 2.15rem 1.25rem 0.5rem 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111' d='M1.2 1.3 6 6.7 10.8 1.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  text-transform: uppercase;
}

.registration-form__field input::placeholder {
  color: transparent;
}

.registration-form__field input:focus,
.registration-form__field select:focus {
  outline: none;
}

.registration-form__field:focus-within label:not(.message),
.registration-form__field:has(input:not(:placeholder-shown)) label:not(.message) {
  top: 0.4rem;
  transform: none;
  font-size: 0.75rem;
}

.registration-form__field:has(select) label:not(.message),
.registration-form__field:has(input[type=date]) label:not(.message) {
  top: 0.15rem;
  transform: none;
  font-size: 1.25rem;
}

.registration-form__field:has(.field_with_errors) input,
.registration-form__field:has(.field_with_errors) select {
  border-bottom-color: #e10600;
}

.registration-form .message {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 0.3rem);
  margin: 0;
  color: #e10600;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: none;
}

.registration-form__agreement:has(.field_with_errors) {
  position: relative;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #e10600;
}

.registration-form__agreement .field_with_errors {
  display: contents;
}

.registration-form__agreement .message {
  left: 1.7rem;
}

.registration-form__cities {
  margin: 0;
}

.registration-form p.registration-form__cities-label {
  margin: 0 0 0.75rem;
  color: rgba(0, 0, 0, 0.35);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.registration-form__cities-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  justify-content: space-between;
}

.registration-form__city {
  position: relative;
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  white-space: nowrap;
}

.registration-form__city input {
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.registration-form__city-mark {
  flex: none;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #d0d0d0;
}

.registration-form__city input:checked + .registration-form__city-mark {
  background: #000;
}

.registration-form__city input:focus {
  outline: none;
}

.registration-form__city input:focus-visible + .registration-form__city-mark {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.registration-form__city-name {
  color: #111;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.registration-form__agreement {
  margin: 0;
}

.registration-form__agreement label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}

.registration-form__agreement input[type=checkbox] {
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  accent-color: #000;
}

.registration-form__agreement a {
  color: inherit;
}

.registration-form input[type=submit] {
  width: 100%;
}

@media (max-width: 440px) {
  .registration__copy p,
  .registration-form__field label:not(.message),
  .registration-form__field:has(select) label:not(.message),
  .registration-form__field:has(input[type=date]) label:not(.message),
  .registration-form__field input,
  .registration-form__field select {
    font-size: 1rem;
  }
  .registration-form input[type=submit] {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
}
.waitlist-claim dl {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem 1rem;
}

.waitlist-claim dt {
  font-weight: 700;
}

.waitlist-claim dd {
  margin: 0;
}

.check-in {
  max-width: 64rem;
}

.check-in-picker {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.check-in-picker input,
.check-in-picker select {
  width: 100%;
  min-height: 44px;
}

.check-in-picker__actions {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (min-width: 48em) {
  .check-in-picker {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .check-in-picker__search {
    grid-column: 1/3;
  }
}
.check-in-summary {
  margin: 0 0 1rem;
}

.check-in-empty {
  margin: 0;
}

.check-in-list {
  width: 100%;
  border-collapse: collapse;
}

.check-in-list caption {
  caption-side: top;
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.check-in-list th,
.check-in-list td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid currentColor;
  vertical-align: middle;
}

.check-in-list button {
  min-height: 44px;
  min-width: 44px;
}

@media (max-width: 47.99em) {
  .check-in-list thead {
    display: none;
  }
  .check-in-list,
  .check-in-list tbody,
  .check-in-list tr,
  .check-in-list td {
    display: block;
    width: 100%;
  }
  .check-in-list tr {
    padding: 1rem 0;
  }
  .check-in-list tr + tr {
    border-top: 1px solid currentColor;
  }
  .check-in-list td {
    border-bottom: 0;
    padding: 0.35rem 0;
  }
  .check-in-list td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
  }
}
.legal-page main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.legal-layout {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.legal__banner {
  max-width: none;
  margin: 0;
  padding: 0;
}

.legal__banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.legal {
  max-width: none;
  margin: 0;
  padding: 2rem 0 3rem;
}

.legal h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal p,
.legal li {
  max-width: none;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal li + li {
  margin-top: 0.4rem;
}

.legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.waiver-page .alert {
  display: block;
  width: max-content;
  max-width: calc(100% - 2rem);
  margin: 1.25rem auto 0;
  padding: 0.65rem 1.35rem 0.65rem 1.5rem;
  background: #e10600;
  color: #fff;
  text-transform: uppercase;
  clip-path: polygon(0.9rem 0, 100% 0, calc(100% - 0.9rem) 100%, 0 100%);
}
.waiver-page main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.waiver {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0;
}

.waiver__banner {
  max-width: none;
  margin: 0 0 20px;
  padding: 0;
}

.waiver__banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.waiver__body {
  padding: 3rem 0 4rem;
}

@media (min-width: 64em) {
  .waiver__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.waiver__copy {
  max-width: none;
  margin: 0;
  padding: 0;
}

.waiver__copy h1 {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.waiver__subtitle {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.waiver__copy h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waiver__copy p {
  margin: 0;
  max-width: none;
}

.waiver__copy ol {
  margin: 1rem 0 0 1.5rem;
  padding-left: 2.25rem;
}

.waiver__copy li {
  margin: 0.55rem 0 0;
}

.waiver__acknowledgment {
  margin-top: 1.75rem;
  font-weight: 700;
}

.waiver__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (min-width: 64em) {
  .waiver__form {
    position: sticky;
    top: 2rem;
  }
}

.waiver__intro {
  margin: 0;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.waiver__signature {
  margin: 0;
}

.waiver__signature-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0.5rem;
  color: rgba(0, 0, 0, 0.35);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.waiver__clear {
  padding: 0;
  border: 0;
  background: none;
  color: #111;
  font: inherit;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.waiver__signature-canvas {
  display: block;
  width: 100%;
  height: 10rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: #fff;
  touch-action: none;
  cursor: crosshair;
}

.waiver__error {
  margin: 0.3rem 0 0;
  color: #e10600;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: none;
}

.waiver__signature:has(.waiver__error:not([hidden])) .waiver__signature-canvas {
  border-bottom-color: #e10600;
}

.waiver__error[hidden] {
  display: none;
}

.waiver__form input[type=submit] {
  width: 100%;
}

@media (max-width: 1199px) {
  .waiver {
    padding: 0 1rem 1rem;
  }
  .waiver__body {
    padding: 0;
  }
}
@media (max-width: 440px) {
  .waiver__copy h1 {
    font-size: 1.25rem;
  }
  .waiver__intro,
  .waiver__signature-label,
  .waiver__form input[type=submit] {
    font-size: 1rem;
  }
  .waiver__form input[type=submit] {
    padding: 0.5rem 1.2rem;
  }
}
.registration-thank-you__download {
  margin: 2.5rem 0 0;
}

.registration-thank-you__download .button {
  letter-spacing: 0.12em;
}

@media (max-width: 440px) {
  .registration-thank-you__download .button {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
}
