/* Cut Sheet Help — modal that shows the first-timer's cut sheet guide */
.cutsheet-cta {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cutsheet-modal[hidden] { display: none; }

.cutsheet-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 3vw, 32px);
}

.cutsheet-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 22, 20, 0.72);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.cutsheet-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  height: min(90vh, 100%);
  background: var(--bone);
  border-radius: 8px;
  border: 1px solid rgba(184, 138, 63, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cutsheet-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--black-iron);
  padding: 10px 14px;
  border-bottom: 3px solid var(--brass);
}

.cutsheet-modal__title {
  font-family: var(--font-cond, "Oswald", sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brass);
}

.cutsheet-modal__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cutsheet-modal__link {
  color: var(--bone);
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 138, 63, 0.6);
  padding-bottom: 1px;
  white-space: nowrap;
}

.cutsheet-modal__link:hover { color: var(--brass-bright, #d2a45c); }

.cutsheet-modal__close {
  background: none;
  border: none;
  color: var(--bone);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.cutsheet-modal__close:hover { color: var(--brass-bright, #d2a45c); }

.cutsheet-modal__body {
  flex: 1;
  min-height: 0;
  background: #fff;
}

.cutsheet-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 560px) {
  .cutsheet-modal__title { display: none; }
  .cutsheet-modal__link { font-size: 0.74rem; }
  .cutsheet-modal__actions { gap: 10px; }
}
