.terms-page {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.terms-page__hero {
  padding-block: clamp(6rem, 14vh, 9rem) var(--space-8);
}

.terms-page__hero-container {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-7);
}

.terms-page__hero-copy {
  width: min(100%, 47.5rem);
  min-width: 0;
}

.terms-page__hero-copy > :last-child {
  margin-block-end: 0;
}

.terms-page__hero-copy .eyebrow {
  width: 100%;
}

.terms-page__hero-copy h1 {
  width: 100%;
  font-size: clamp(3.5rem, 6.2vw, 4.5rem);
}

.terms-page__hero-copy .lead {
  width: min(100%, 40rem);
}

.terms-page__accent {
  color: var(--color-blood-red);
}

.terms-page__hero-rule {
  width: 100%;
}

.terms-page__document {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-8);
  padding-bottom: var(--space-10);
}

.terms-page__contents {
  width: min(100%, 45rem);
  min-width: 0;
  padding: var(--space-5);
  border: var(--border-light);
  border-radius: var(--radius-none);
  background: var(--color-smoke-grey);
}

.terms-page__contents-label {
  margin: 0;
  color: var(--color-paper-white);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.terms-page__contents-list {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none !important;
}

.terms-page__contents-list > li {
  width: 100%;
  min-width: 0;
}

.terms-page__contents-list a {
  display: inline-flex;
  width: 100%;
  min-height: 2.75rem;
  align-items: center;
  color: var(--color-muted-white);
  font-size: var(--text-nav);
  line-height: 1.35;
  text-decoration: none;
}

.terms-page__contents-list a:hover {
  color: var(--color-paper-white);
  text-decoration: underline;
  text-decoration-color: var(--color-blood-red);
  text-underline-offset: 0.24em;
}

.terms-page__legal {
  display: flex;
  width: min(100%, 50rem);
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
}

.terms-section {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 5rem minmax(0, 45rem);
  column-gap: var(--space-4);
  padding-block: var(--space-8);
  border-top: var(--border-default);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.terms-page--ready .terms-section {
  opacity: 1;
  transform: translateY(0);
}

.terms-section:nth-child(2) {
  transition-delay: 35ms;
}

.terms-section:nth-child(3) {
  transition-delay: 70ms;
}

.terms-section:nth-child(4) {
  transition-delay: 105ms;
}

.terms-section:nth-child(5) {
  transition-delay: 140ms;
}

.terms-section:nth-child(6) {
  transition-delay: 175ms;
}

.terms-section:nth-child(7) {
  transition-delay: 210ms;
}

.terms-section:nth-child(8) {
  transition-delay: 220ms;
}

.terms-section:nth-child(9) {
  transition-delay: 220ms;
}

.terms-section__number {
  width: 5rem;
  min-width: 0;
  padding-top: 0.25rem;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.terms-section__body {
  width: 100%;
  min-width: 0;
}

.terms-section__body > :last-child {
  margin-block-end: 0;
}

.terms-section__body h2 {
  width: min(100%, 43.75rem);
}

.terms-section__body p {
  width: min(100%, 43.75rem);
}

.terms-section__note {
  width: min(100%, 37.5rem) !important;
  margin-top: var(--space-5);
  padding-left: var(--space-4);
  border-left: 1px solid var(--color-light-line);
}

.terms-section__age-label,
.terms-section__label {
  color: var(--color-muted-white);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.terms-section__age-label {
  display: flex;
  width: 100%;
  min-height: 2.75rem;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.terms-section__age-label span {
  color: var(--color-blood-red);
  font-size: 1rem;
}

.terms-section__rule-list {
  display: flex;
  width: min(100%, 38.75rem);
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-4);
  margin-top: var(--space-5);
  margin-bottom: var(--space-4);
  padding: 0;
  list-style: none !important;
}

.terms-section__rule-list > li {
  position: relative;
  width: 100%;
  min-width: 0;
  padding-left: var(--space-4);
}

.terms-section__rule-list > li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 0.5rem;
  height: 1px;
  background: var(--color-line-grey);
  content: "";
}

.terms-section__rule-list strong {
  color: var(--color-paper-white);
}

.terms-section__rule-list--divided {
  gap: 0;
  border-top: var(--border-default);
}

.terms-section__rule-list--divided > li {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: var(--border-default);
}

.terms-section__rule-list--divided > li::before {
  top: calc(var(--space-4) + 0.78em);
}

.terms-page__warning {
  display: flex;
  width: min(100%, 45rem);
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-4);
  margin-block: var(--space-5);
  padding: var(--space-5);
  border: var(--border-light);
  border-radius: var(--radius-none);
  background: var(--color-smoke-grey);
}

.terms-page__warning > * {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.terms-page__warning-title {
  color: var(--color-paper-white);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terms-page__warning ul {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-3);
  padding: 0;
  list-style: none !important;
}

.terms-page__warning li {
  position: relative;
  width: 100%;
  min-width: 0;
  padding-left: var(--space-4);
  color: var(--color-paper-white);
}

.terms-page__warning li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.5rem;
  height: 1px;
  background: var(--color-blood-red);
  content: "";
}

.terms-section__closing {
  width: min(100%, 42.5rem) !important;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: var(--border-default);
}

.terms-page__formats {
  display: flex;
  width: min(100%, 43.75rem);
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  margin-top: var(--space-5);
  margin-bottom: var(--space-5);
  border-top: var(--border-default);
}

.terms-page__format {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  column-gap: var(--space-5);
  padding-block: var(--space-5);
  border-bottom: var(--border-default);
}

.terms-page__format h3 {
  width: 100%;
  min-width: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-lead);
  letter-spacing: 0;
  line-height: 1.35;
}

.terms-page__format p {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.terms-section__venue-order {
  display: flex;
  width: min(100%, 43.75rem);
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-3);
  margin-top: var(--space-5);
  margin-bottom: var(--space-5);
  padding-top: var(--space-5);
  border-top: var(--border-default);
}

.terms-section__venue-order > * {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.terms-section__emphasis {
  width: min(100%, 37.5rem) !important;
  padding-left: var(--space-4);
  border-left: 1px solid var(--color-paper-white);
  color: var(--color-paper-white);
}

.terms-section__divided-copy {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: var(--border-default);
}

.terms-section__financial-repeat {
  width: min(100%, 37.5rem) !important;
  margin-top: var(--space-5);
  color: var(--color-muted-white);
  font-size: var(--text-label);
}

.terms-section__financial-repeat span {
  color: var(--color-blood-red);
  font-weight: 700;
}

.terms-section--privacy .terms-section__body {
  max-width: 41.25rem;
}

.terms-page__inline-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--color-paper-white);
  font-weight: 600;
  text-decoration-color: var(--color-blood-red);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.terms-page__inline-link:hover {
  color: var(--color-paper-white);
  text-decoration-thickness: 2px;
}

.terms-section--closing {
  padding-bottom: var(--space-10);
}

.terms-section__final-rule {
  width: 100%;
  margin-top: var(--space-7);
  margin-bottom: 0;
}

@media (max-width: 63.75rem) {
  .terms-page__hero {
    padding-top: clamp(5.5rem, 12vh, 7rem);
  }

  .terms-page__document {
    gap: var(--space-7);
  }

  .terms-section {
    grid-template-columns: 4rem minmax(0, 43.75rem);
  }

  .terms-section__number {
    width: 4rem;
  }
}

@media (max-width: 56.25rem) {
  .terms-page__format {
    grid-template-columns: 1fr;
    row-gap: var(--space-3);
  }
}

@media (max-width: 53.75rem) {
  .terms-section {
    grid-template-columns: 1fr;
    row-gap: var(--space-3);
  }

  .terms-section__number {
    width: 100%;
    padding-top: 0;
    color: var(--color-muted-white);
    font-family: var(--font-body);
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    line-height: 1.4;
  }

  .terms-section__number::before {
    color: var(--color-blood-red);
    content: "§ ";
  }
}

@media (max-width: 47.5rem) {
  .terms-page__hero {
    padding-top: clamp(4.5rem, 11vh, 5.75rem);
    padding-bottom: var(--space-7);
  }

  .terms-page__hero-container {
    gap: var(--space-6);
  }

  .terms-page__hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3rem);
    line-height: 0.94;
  }

  .terms-page__hero-copy .lead {
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .terms-page__document {
    gap: var(--space-6);
    padding-bottom: var(--space-8);
  }

  .terms-page__contents {
    width: 100%;
    padding: var(--space-4);
  }

  .terms-page__contents-list {
    gap: 0;
  }

  .terms-page__contents-list a {
    padding-block: var(--space-2);
  }

  .terms-page__legal {
    width: 100%;
  }

  .terms-section {
    padding-block: var(--space-7);
  }

  .terms-section__body h2,
  .terms-section__body p,
  .terms-section__note,
  .terms-section__closing,
  .terms-section__emphasis,
  .terms-section__financial-repeat {
    width: 100% !important;
  }

  .terms-section__rule-list,
  .terms-page__warning,
  .terms-page__formats,
  .terms-section__venue-order {
    width: 100%;
  }

  .terms-page__warning {
    padding: var(--space-4);
  }

  .terms-page__format {
    padding-block: var(--space-4);
  }

  .terms-section--closing {
    padding-bottom: var(--space-8);
  }
}

@media (prefers-reduced-motion: reduce) {
  .terms-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
